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

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: