First batch

This commit is contained in:
Yugi
2025-04-13 00:25:40 +02:00
commit fd170b4e5d
18 changed files with 451 additions and 0 deletions

21
Diun/diun.yml Normal file
View File

@@ -0,0 +1,21 @@
watch:
workers: 20
schedule: "0 */12 * * *"
runOnStartup: true
compareDigest: true
providers:
docker:
watchByDefault: true
watchStopped: true
notif:
gotify:
endpoint: https://gotify.yugi.cz
token: A7EM6syLWMocp-z
priority: 1
timeout: 10s
templateTitle: "{{ .Entry.Image }} released"
templateBody: |
Docker tag {{ .Entry.Image }} which you subscribed to through {{ .Entry.Provider }} provider has been released.

15
Diun/docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
name: diun
services:
diun:
image: crazymax/diun:latest
command: serve
volumes:
- "/zstore/Docker-volumes/Diun/data:/data"
- "./diun.yml:/diun.yml:ro"
- "/var/run/docker.sock:/var/run/docker.sock"
environment:
- "TZ=Europe/Paris"
- "LOG_LEVEL=info"
- "LOG_JSON=false"
restart: always