18 lines
608 B
YAML
18 lines
608 B
YAML
services:
|
|
watchtower:
|
|
container_name: watchtower
|
|
image: nickfedor/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"
|