Files
next-dj/docker-compose.yml
Beyhan Oğur e881f38e4e first commit
2026-04-26 22:12:36 +03:00

28 lines
411 B
YAML

services:
web-dev:
build:
context: .
target: dev
ports:
- "3000:3000"
env_file:
- .env.local
volumes:
- .:/app
- web_node_modules:/app/node_modules
- web_next_cache:/app/.next
web-prod:
build:
context: .
target: runner
ports:
- "3000:3000"
env_file:
- .env.local
volumes:
web_node_modules:
web_next_cache: