最后活跃于 1741035245

DIUN (Docker Image Update Notifier) che consente di monitorare gli aggiornamenti delle immagini Docker e ricevere notifiche quando vengono rilasciate nuove versioni.

docker-compose.yml 原始文件
1services:
2 diun:
3 image: crazymax/diun:latest
4 container_name: diun
5 command: serve
6 security_opt:
7 - no-new-privileges:true
8 volumes:
9 - ./data:/data
10 - /var/run/docker.sock:/var/run/docker.sock:ro
11 environment:
12 - PUID=1000
13 - PGID=1000
14 - TZ=Europe/Rome
15 - LOG_LEVEL=info
16 - LOG_JSON=false
17 - DIUN_WATCH_WORKERS=10
18 - DIUN_WATCH_SCHEDULE=0 */6 * * *
19 - DIUN_WATCH_JITTER=30s
20 - DIUN_PROVIDERS_DOCKER=true
21 - DIUN_PROVIDERS_DOCKER_WATCHBYDEFAULT=true
22 #- DIUN_NOTIF_NTFY_ENDPOINT=https://ntfy.emanuelegori.uno
23 #- DIUN_NOTIF_NTFY_TOPIC=diun-notifications
24 #- DIUN_NOTIF_NTFY_TOKEN=xxxxxxxxxxxxxx
25 #- DIUN_NOTIF_NTFY_TEMPLATETITLE={{ .Entry.Image }} {{ if (eq .Entry.Status "new") }}is available{{ else }}has been updated{{ end }}
26 #- DIUN_NOTIF_NTFY_TEMPLATEBODY=Docker tag {{ if .Entry.Image.HubLink }}[**{{ .Entry.Image }}**]({{ .Entry.Image.HubLink }}){{ else }}**{{ .Entry.Image }}**{{ end }} which you subscribed to through {{ .Entry.Provider }} provider {{ if (eq .Entry.Status "new") }}is available{{ else }}has been updated{{ end }} on {{ .Entry.Image.Domain }} registry (triggered by {{ .Meta.Hostname }} host).
27 restart: unless-stopped
28