19 lines
401 B
YAML
19 lines
401 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
nextjs-app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8091:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- NEXT_TELEMETRY_DISABLED=1
|
|
restart: unless-stopped
|
|
# For development with hot reload, uncomment these lines:
|
|
# volumes:
|
|
# - .:/app
|
|
# - /app/node_modules
|
|
# - /app/.next
|
|
# command: pnpm dev |