Files
homelab-optimized/hosts/synology/calypso/watchtower.yaml
Gitea Mirror Bot fb00a325d1
Some checks failed
Documentation / Build Docusaurus (push) Failing after 5m14s
Documentation / Deploy to GitHub Pages (push) Has been skipped
Sanitized mirror from private repository - 2026-04-18 11:19:59 UTC
2026-04-18 11:19:59 +00:00

38 lines
1.2 KiB
YAML

# Watchtower - Container update notifier for Calypso (schedule disabled - GitOps managed)
# Auto-update schedule removed; image updates are handled via Renovate PRs.
# Manual update trigger: POST http://localhost:8080/v1/update
# Header: Authorization: Bearer watchtower-metrics-token
version: '3.8'
services:
watchtower:
image: containrrr/watchtower:latest
container_name: watchtower
ports:
- "8080:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
# Core functionality
- DOCKER_API_VERSION=1.43
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_INCLUDE_RESTARTING=true
- WATCHTOWER_INCLUDE_STOPPED=true
- WATCHTOWER_REVIVE_STOPPED=false
- WATCHTOWER_TIMEOUT=10s
- TZ=America/Los_Angeles
# Schedule disabled — updates managed via Renovate PRs (GitOps).
# Enable manual HTTP API updates instead.
- WATCHTOWER_HTTP_API_UPDATE=true
# HTTP API for metrics and manual update triggers
- WATCHTOWER_HTTP_API_METRICS=true
- WATCHTOWER_HTTP_API_TOKEN="REDACTED_HTTP_TOKEN"
restart: unless-stopped
labels:
# Exclude watchtower from updating itself
- "com.centurylinklabs.watchtower.enable=false"