Files
NODE-16/diun/docker-compose.yml
john 0276e8ea04 Update diun/docker-compose.yml
Change of location for GOTIFY
2026-05-08 09:10:04 +00:00

26 lines
805 B
YAML

services:
diun:
image: crazymax/diun:latest
container_name: diun
command: serve
volumes:
- "/docker/diun/data:/data"
- "/var/run/docker.sock:/var/run/docker.sock"
environment:
- "TZ=Europe/London"
- "LOG_LEVEL=info"
- "LOG_JSON=false"
- "DIUN_WATCH_WORKERS=20"
- "DIUN_WATCH_SCHEDULE=0 */6 * * *"
- "DIUN_WATCH_JITTER=30s"
- "DIUN_PROVIDERS_DOCKER=true"
- "DIUN_PROVIDERS_DOCKER_WATCHBYDEFAULT=true"
- "DIUN_NOTIF_GOTIFY_ENDPOINT=http://192.168.1.230:80" # IP address of ELITE cluster for GOTIFY
- "DIUN_NOTIF_GOTIFY_TOKEN=A9LL-3mfhOa.P4V" # get your token from Gotify UI
- "DIUN_NOTIF_GOTIFY_PRIORITY=5"
- "DIUN_NOTIF_GOTIFY_TIMEOUT=10s"
labels:
- "diun.enable=true"
restart: always