initial commit

This commit is contained in:
Tudor Sitaru
2026-01-06 13:52:00 +00:00
commit c65eb1a00f
37 changed files with 402537 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
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