18 lines
608 B
YAML
18 lines
608 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 über Shoutrrr
|
|
- WATCHTOWER_NOTIFICATIONS=shoutrrr
|
|
- SHOUTRRR_TELEGRAM_BOT_TOKEN=7216539099:AAH6tptIs-TUpSOtCQmxMWCpgAsPCGgbNeo
|
|
- SHOUTRRR_TELEGRAM_CHAT_ID=7646180954 |