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