Files
my-self-host-services/watchtower/docker-compose.yaml
2026-03-05 14:08:56 +00:00

19 lines
420 B
YAML

services:
watchtower:
image: nickfedor/watchtower:latest
container_name: watchtower
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"