17 lines
360 B
YAML
17 lines
360 B
YAML
|
|
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
|
||
|
|
|