From 47d34f735b14f1fcd3c1e639eba8016980a22368 Mon Sep 17 00:00:00 2001 From: john Date: Mon, 27 Apr 2026 13:50:36 +0000 Subject: [PATCH] Add diun/docker-compose.yml --- diun/docker-compose.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 diun/docker-compose.yml diff --git a/diun/docker-compose.yml b/diun/docker-compose.yml new file mode 100644 index 0000000..eed8e43 --- /dev/null +++ b/diun/docker-compose.yml @@ -0,0 +1,27 @@ +services: + diun: + image: crazymax/diun:latest + container_name: diun + restart: unless-stopped + command: serve + volumes: + - "/data/docker/diun/beta/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_PROVIDERS_SWARM=true" +# - "DIUN_PROVIDERS_SWARM_WATCHBYDEFAULT=true" + + - "DIUN_NOTIF_GOTIFY_ENDPOINT=http://192.168.1.25:8111" + - "DIUN_NOTIF_GOTIFY_TOKEN=A_SFYNoBUYxWYgN" # get your token from Gotify UI + - "DIUN_NOTIF_GOTIFY_PRIORITY=5" + - "DIUN_NOTIF_GOTIFY_TIMEOUT=10s" + +