16 lines
464 B
YAML
16 lines
464 B
YAML
services:
|
|
# Dev deploy trigger 6 (no functional change)
|
|
watchtower:
|
|
image: containrrr/watchtower:latest
|
|
container_name: watchtower
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=America/New_York
|
|
- DOCKER_API_VERSION=1.44
|
|
- WATCHTOWER_SCHEDULE=0 0 4 * * *
|
|
- WATCHTOWER_CLEANUP=true
|
|
- WATCHTOWER_INCLUDE_STOPPED=false
|
|
- WATCHTOWER_REVIVE_STOPPED=false
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|