Files
my-self-host-services/watchtower/docker-compose.yaml
2026-02-17 18:07:17 +00:00

18 lines
389 B
YAML

services:
watchtower:
image: nickfedor/watchtower:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command:
- "--label-enable"
- "--cleanup"
- "--rolling-restart"
- "--interval"
- "600" # 10 minutes
logging:
driver: "json-file"
options:
max-size: "100m"
max-file: "3"