dnd-hub/docker-compose.yml
2026-03-16 22:15:15 -04:00

25 lines
433 B
YAML

services:
web:
build:
context: .
dockerfile: infra/server.Dockerfile
env_file:
- .env
ports:
- "4000:4000"
volumes:
- ./apps/server/data:/app/apps/server/data
restart: unless-stopped
frontend:
build:
context: .
dockerfile: infra/frontend.Dockerfile
env_file:
- .env
ports:
- "8080:80"
depends_on:
- web
restart: unless-stopped