Files
cmc_frontend/docker-compose.yml
2025-10-09 23:26:44 +05:30

15 lines
265 B
YAML

version: "3.9"
services:
nextjs:
build: .
container_name: cmc_nextjs_pro
ports:
- "9012:3000"
env_file:
- .env # <-- tell Docker to use the .env file
restart: unless-stopped
volumes:
- .:/app
- /app/node_modules