18 lines
615 B
YAML
18 lines
615 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
watchtower:
|
|
image: containrrr/watchtower:latest
|
|
container_name: watchtower
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
# Täglicher Check um 04:00 Uhr
|
|
- WATCHTOWER_SCHEDULE=0 0 4 * * *
|
|
# Container bei Update automatisch neu starten
|
|
- WATCHTOWER_INCLUDE_RESTARTING=true
|
|
# Telegram Notifications
|
|
- WATCHTOWER_NOTIFICATIONS=shoutrrr
|
|
# Korrekt escaped Telegram-Bot-Token
|
|
- WATCHTOWER_NOTIFICATION_URL=telegram://7216539099%3AAAH6tptIs-TUpSOtCQmxMWCpgAsPCGgbNeo/7646180954 |