18 lines
339 B
YAML
18 lines
339 B
YAML
version: '3.8'
|
|
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: |