mirror of
https://github.com/aykhans/my-self-host-services.git
synced 2026-02-28 06:49:10 +00:00
18 lines
389 B
YAML
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"
|