Files
homelab-watchtower/docker-compose.yml
2025-03-15 13:38:46 +00:00

18 lines
609 B
YAML

services:
watchtower:
container_name: watchtower
image: containrrr/watchtower
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "8084:8080"
environment:
WATCHTOWER_INTERVAL: 600 # Check for updates every 10 minutes (in seconds)
WATCHTOWER_NOTIFICATIONS: gotify
WATCHTOWER_NOTIFICATION_GOTIFY_URL: "https://gotify.stamand.us/"
WATCHTOWER_NOTIFICATION_GOTIFY_TOKEN: "A2aWB3Uj9bG_2Rh"
WATCHTOWER_CLEANUP: "true"
WATCHTOWER_MONITOR_ONLY: "true"
WATCHTOWER_NOTIFICATION_TITLE_TAG: "apps01 stamand"