18 lines
458 B
YAML
18 lines
458 B
YAML
services:
|
|
watcher:
|
|
image: git.triggermeelmo.com/daniel-hbn/watcher/watcher:development
|
|
container_name: watcher
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./data:/app/persistence
|
|
- ./dumps:/app/wwwroot/downloads/sqlite
|
|
- ./logs:/app/logs
|
|
healthcheck:
|
|
test: "curl -f http://localhost:5000"
|
|
interval: 1m30s
|
|
timeout: 30s
|
|
retries: 5
|
|
start_period: 30s |