Compare commits

..

2 commits

3 changed files with 48 additions and 26 deletions

View file

@ -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

View file

@ -11,10 +11,10 @@ services:
networks: networks:
- web - web
- nextcloud - nextcloud
healthcheck: # healthcheck:
test: curl -sSf 'http://localhost/status.php' | grep '"installed":true' | grep '"maintenance":false' | grep '"needsDbUpgrade":false' || exit 1 # test: curl -sSf 'http://localhost/status.php' | grep '"installed":true' | grep '"maintenance":false' | grep '"needsDbUpgrade":false' || exit 1
interval: 5s # interval: 5s
timeout: 3s # timeout: 3s
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.http.routers.nextcloud.rule=Host(`cloud.${DOMAIN}`)" - "traefik.http.routers.nextcloud.rule=Host(`cloud.${DOMAIN}`)"
@ -138,26 +138,26 @@ services:
- "docker.group=netxtcloud" - "docker.group=netxtcloud"
adminer: # adminer:
image: adminer # image: adminer
restart: unless-stopped # restart: unless-stopped
networks: # networks:
- web # - web
- mariadb # - mariadb
environment: # environment:
- ADMINER_DEFAULT_SERVER=db # - ADMINER_DEFAULT_SERVER=db
- ADMINER_DESIGN=flat # - ADMINER_DESIGN=flat
depends_on: # depends_on:
- db # - db
labels: # labels:
- "traefik.enable=true" # - "traefik.enable=true"
- "traefik.http.routers.adminer.rule=Host(`adminer.${DOMAIN}`)" # - "traefik.http.routers.adminer.rule=Host(`adminer.${DOMAIN}`)"
- "traefik.http.routers.adminer.entrypoints=websecure" # - "traefik.http.routers.adminer.entrypoints=websecure"
- "traefik.http.routers.adminer.tls.certresolver=netcup" # - "traefik.http.routers.adminer.tls.certresolver=netcup"
- "traefik.http.routers.adminer.tls.options=intermediate@file" # - "traefik.http.routers.adminer.tls.options=intermediate@file"
- "traefik.http.routers.adminer.middlewares=adminerauth" # - "traefik.http.routers.adminer.middlewares=adminerauth"
- "traefik.http.middlewares.adminerauth.basicauth.users=${HTPASSWD_ADMINER}" # - "traefik.http.middlewares.adminerauth.basicauth.users=${HTPASSWD_ADMINER}"
- "docker.group=netxtcloud" # - "docker.group=netxtcloud"
redis: redis:

View file

@ -69,6 +69,7 @@ services:
# 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: