portal-payment-fe/docker-compose.yml

15 lines
282 B
YAML

version: "3.9"
services:
frontend:
build:
context: .
dockerfile: Dockerfile
image: ibank-frontend:latest
environment:
- NODE_ENV=production
- NEXT_PUBLIC_API_URL=http://localhost:3000
ports:
- "5836:3000"
restart: unless-stopped