29 lines
759 B
YAML
29 lines
759 B
YAML
networks:
|
|
pangolin:
|
|
external: true
|
|
|
|
services:
|
|
dispatcharr:
|
|
image: ghcr.io/dispatcharr/dispatcharr:latest
|
|
container_name: dispatcharr
|
|
restart: unless-stopped
|
|
networks:
|
|
- default
|
|
- pangolin
|
|
ports:
|
|
- "9191:9191"
|
|
environment:
|
|
TZ: ${TZ}
|
|
DISPATCHARR_ENV: aio
|
|
REDIS_HOST: localhost
|
|
CELERY_BROKER_URL: redis://localhost:6379/0
|
|
DISPATCHARR_LOG_LEVEL: ${DISPATCHARR_LOG_LEVEL:-info}
|
|
volumes:
|
|
- /mnt/docker-ssd/docker/appdata/dispatcharr:/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:9191/ >/dev/null 2>&1 || curl -sf http://127.0.0.1:9191/ >/dev/null 2>&1 || exit 1"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 90s
|