init 1
This commit is contained in:
parent
14456d0a66
commit
a9208adf5a
8 changed files with 131 additions and 0 deletions
17
diun/compose.yml
Normal file
17
diun/compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
diun:
|
||||
image: crazymax/diun:latest
|
||||
container_name: diun
|
||||
command: serve
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./diun.yml:/diun.yml:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
environment:
|
||||
- TZ=Europe/Paris
|
||||
- DIUN_PROVIDERS_DOCKER=true
|
||||
- PUID=XXXX
|
||||
- PGID=XXXX
|
||||
labels:
|
||||
- diun.enable=true
|
||||
restart: always
|
14
diun/diun.yml
Normal file
14
diun/diun.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
notif:
|
||||
gotify:
|
||||
endpoint: # URl du notifieur (ex: gotify)
|
||||
token: # Token pour gotify à prendre sur l'application gotify si utilisation de gotify
|
||||
priority: 1
|
||||
timeout: 10s
|
||||
templateTitle: "{{ .Entry.Image }}"
|
||||
templateBody: |
|
||||
Sur XXXX le container {{ .Entry.Image }} doit être mise à jour {{ .Entry.Provider }}.
|
||||
|
||||
watch:
|
||||
workers: 30
|
||||
schedule: "0 19,23 * * *"
|
||||
jitter: 30s
|
Loading…
Add table
Add a link
Reference in a new issue