21 lines
436 B
YAML
21 lines
436 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
frontend:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
NEXT_PUBLIC_API_URL: http://localhost:3000
|
|
NODE_ENV: production
|
|
PORT: 3000
|
|
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
|