Files
sport1233413243-2026-02-26-v1/docker/docker-compose.yml
2026-01-28 18:34:47 +01:00

29 lines
580 B
YAML

services:
web:
build:
context: ..
dockerfile: docker/Dockerfile
target: development
ports:
- "3000:3000"
volumes:
- ..:/app
- /app/node_modules
- /app/.next
environment:
- NODE_ENV=development
- NEXT_TELEMETRY_DISABLED=1
restart: unless-stopped
# Production build (optional)
# web-prod:
# build:
# context: ..
# dockerfile: docker/Dockerfile
# target: production
# ports:
# - "3000:3000"
# environment:
# - NODE_ENV=production
# restart: unless-stopped