Files
school_compare/docker-compose.yml

17 lines
360 B
YAML
Raw Normal View History

2026-01-06 13:52:00 +00:00
services:
app:
build: .
ports:
- "80:80"
volumes:
# Mount data directory for easy updates without rebuilding
- ./data:/app/data:ro
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/api/data-info"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s