added diun
This commit is contained in:
parent
9ce84ef776
commit
65cdd42f6d
4 changed files with 37 additions and 0 deletions
13
docker/diun/compose.yml
Normal file
13
docker/diun/compose.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
services:
|
||||
diun:
|
||||
image: crazymax/diun:latest
|
||||
command: serve
|
||||
container_name: diun
|
||||
volumes:
|
||||
- "./data:/data"
|
||||
- "/var/run/docker.sock:/var/run/docker.sock"
|
||||
- "./diun.yml:/diun.yml:ro"
|
||||
environment:
|
||||
# general settings
|
||||
- "TZ=Europe/Berlin"
|
||||
restart: always
|
2
docker/diun/data/images-to-monitory.yml
Normal file
2
docker/diun/data/images-to-monitory.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
- name: caddy:2-builder
|
||||
- name: caddy:2
|
20
docker/diun/diun.yml
Normal file
20
docker/diun/diun.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
watch:
|
||||
workers: 20
|
||||
schedule: "0 */6 * * *"
|
||||
firstCheckNotif: false
|
||||
jitter: "30s"
|
||||
|
||||
providers:
|
||||
docker:
|
||||
watchByDefault: true
|
||||
file:
|
||||
filename: /data/images-to-monitor.yml
|
||||
|
||||
notif:
|
||||
ntfy:
|
||||
endpoint: https://notify.grobecker.me
|
||||
topic: diun
|
||||
priority: 3
|
||||
templateTitle: "[diun hetzner] {{ .Entry.Image }} released"
|
||||
templateBody: |
|
||||
Docker tag {{ .Entry.Image }} which you subscribed to through {{ .Entry.Provider }} provider has been released.
|
2
docker/diun/info.md
Normal file
2
docker/diun/info.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
This here is the config for diun on my _hetzner_-instance, meaning that my _raspi_-instance is slightly different\
|
||||
For example: _hetzner_ uses a dedicated file while _raspi_ uses environment-variables
|
Loading…
Reference in a new issue