Files
operify/docker-compose.yml
2025-06-16 18:39:44 +05:30

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: