diun: Docker Image Update Notifier
This commit is contained in:
parent
f3bb2bf0db
commit
c679e2b813
2 changed files with 24 additions and 2 deletions
|
@ -104,6 +104,27 @@ services:
|
||||||
labels:
|
labels:
|
||||||
- "docker.group=monitoring"
|
- "docker.group=monitoring"
|
||||||
|
|
||||||
|
|
||||||
|
diun:
|
||||||
|
image: crazymax/diun:latest
|
||||||
|
command: serve
|
||||||
|
volumes:
|
||||||
|
- "${VOLUMES_PATH}/monitoring/diun/data:/data"
|
||||||
|
networks:
|
||||||
|
- dockersocket
|
||||||
|
environment:
|
||||||
|
- "TZ=Europe/Berlin"
|
||||||
|
- "DIUN_WATCH_WORKERS=10"
|
||||||
|
- "DIUN_WATCH_SCHEDULE=0 */6 * * *"
|
||||||
|
- "DIUN_WATCH_JITTER=30s"
|
||||||
|
- "DIUN_PROVIDERS_DOCKER_ENDPOINT=tcp://docker-socket-proxy:2375"
|
||||||
|
- "DIUN_PROVIDERS_DOCKER_WATCHBYDEFAULT=true"
|
||||||
|
- "DIUN_NOTIF_NTFY_ENDPOINT=${NTFY_SERVER}"
|
||||||
|
- "DIUN_NOTIF_NTFY_TOPIC=${NTFY_TOPIC}"
|
||||||
|
- "DIUN_NOTIF_NTFY_TOKEN=${NTFY_TOKEN}"
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
# here starts data collection of local host
|
# here starts data collection of local host
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ services:
|
||||||
traefik:
|
traefik:
|
||||||
image: traefik:${TRAEFIK_VERSION}
|
image: traefik:${TRAEFIK_VERSION}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- NETCUP_ENDPOINT=${NETCUP_ENDPOINT}
|
- NETCUP_ENDPOINT=${NETCUP_ENDPOINT}
|
||||||
- NETCUP_CUSTOMER_NUMBER=${NETCUP_CUSTOMER_NUMBER}
|
- NETCUP_CUSTOMER_NUMBER=${NETCUP_CUSTOMER_NUMBER}
|
||||||
- NETCUP_API_KEY=${NETCUP_API_KEY}
|
- NETCUP_API_KEY=${NETCUP_API_KEY}
|
||||||
|
@ -63,12 +63,13 @@ services:
|
||||||
docker-socket-proxy:
|
docker-socket-proxy:
|
||||||
image: tecnativa/docker-socket-proxy
|
image: tecnativa/docker-socket-proxy
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
environment:
|
environment:
|
||||||
# grant privileges as environment variables: https://github.com/Tecnativa/docker-socket-proxy#grant-or-revoke-access-to-certain-api-sections
|
# grant privileges as environment variables: https://github.com/Tecnativa/docker-socket-proxy#grant-or-revoke-access-to-certain-api-sections
|
||||||
- CONTAINERS=1
|
- CONTAINERS=1
|
||||||
- INFO=1
|
- INFO=1
|
||||||
|
- IMAGES=1 # for diun
|
||||||
networks:
|
networks:
|
||||||
- dockersocket
|
- dockersocket
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
|
Loading…
Reference in a new issue