This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docker/monitoring/wud/docker-compose.yml
T
2026-07-17 06:05:28 +10:00

38 lines
1.1 KiB
YAML

services:
wud:
profiles: ["monitoring","all","wud"]
image: getwud/wud
container_name: wud
restart: always
# ports:
# - "3000:3000"
volumes:
- ${DOCKER_VOLUMES}/wud:/store
environment:
# Docker Socket Proxy
WUD_WATCHER_LOCAL_HOST: ${DOCKER_SOCKET_PROXY_HOST}
# Check every 6 hours
WUD_WATCHER_LOCAL_CRON: ${WUD_WATCHER_LOCAL_CRON}
# Gotify
WUD_TRIGGER_GOTIFY_URL: ${WUD_TRIGGER_GOTIFY_URL}
WUD_TRIGGER_GOTIFY_TOKEN: ${WUD_TRIGGER_GOTIFY_TOKEN}
WUD_TRIGGER_GOTIFY_PRIORITY: ${WUD_TRIGGER_GOTIFY_PRIORITY}
WUD_TRIGGER_GOTIFY_TITLE: ${WUD_TRIGGER_GOTIFY_TITLE}
labels:
- "traefik.enable=true"
- "traefik.docker.network=core_traefik"
- "io.portainer.accesscontrol.public"
- "traefik.http.routers.wud.rule=Host(`wud.lan.ddnsgeek.com`)"
- "traefik.http.routers.wud.entrypoints=websecure"
- "traefik.http.routers.wud.tls.certresolver=myresolver"
- "traefik.http.routers.wud.tls.options=mtls-private-admin@file"
- "traefik.http.services.wud.loadbalancer.server.port=3000"
networks:
- traefik