From 86ae7a4cc5790c5cd7e919919c2bd07dbed288dd Mon Sep 17 00:00:00 2001 From: Micha Date: Sat, 28 Mar 2026 13:49:34 +0000 Subject: [PATCH] feat: add diun stack, migrate notifications from gotify to ntfy --- ops/diun/docker-compose.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ops/diun/docker-compose.yml diff --git a/ops/diun/docker-compose.yml b/ops/diun/docker-compose.yml new file mode 100644 index 0000000..86ac429 --- /dev/null +++ b/ops/diun/docker-compose.yml @@ -0,0 +1,31 @@ +services: + diun: + image: crazymax/diun:4.31.0 + container_name: diun + hostname: diun + command: serve + restart: unless-stopped + environment: + TZ: Europe/Berlin + 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: "false" + DIUN_PROVIDERS_DOCKER_WATCHSTOPPED: "false" + # Notifications via ntfy (replaced gotify) + DIUN_NOTIF_NTFY_ENDPOINT: https://ntfy.kaleschke.info + DIUN_NOTIF_NTFY_TOPIC: diun + volumes: + - /mnt/user/appdata/diun:/data + - /var/run/docker.sock:/var/run/docker.sock:ro + security_opt: + - no-new-privileges:true + networks: + - frontend_net + +networks: + frontend_net: + external: true