17 lines
324 B
YAML
17 lines
324 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8091:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- NEXT_TELEMETRY_DISABLED=1
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules
|
|
- next-cache:/app/.next/cache
|
|
restart: unless-stopped
|
|
volumes:
|
|
next-cache: |