Files

28 lines
472 B
YAML
Raw Permalink Normal View History

2026-05-23 12:50:44 +08:00
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
env_file:
- ./backend/.env
2026-05-23 12:50:44 +08:00
environment:
- GEN2D_MODE=release
volumes:
- backend-data:/data
2026-05-23 12:50:44 +08:00
expose:
- "8080"
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
2026-05-23 17:24:58 +08:00
- "${GEN2D_PORT:-10000}:80"
2026-05-23 12:50:44 +08:00
depends_on:
- backend
restart: unless-stopped
volumes:
backend-data: