mirror of
https://github.com/DoTheEvo/selfhosted-apps-docker
synced 2024-11-10 19:10:48 +00:00
1.2 KiB
1.2 KiB
Watchtower in docker
guide by example
purpose
Automatic updates of containers.
files and directory structure
/home
└── ~
└── docker
└── watchtower
└── 🗋 docker-compose.yml
docker-compose
scheduled
to run every saturday at midnight
no need to be on the same network as other containers, no need .env file
docker-compose.yml
version: '3'
services:
watchtower:
image: containrrr/watchtower:latest
container_name: watchtower
hostname: watchtower
restart: unless-stopped
environment:
- TZ=Europe/Prague
- WATCHTOWER_SCHEDULE=0 0 0 * * SAT
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_TIMEOUT=30s
- WATCHTOWER_DEBUG=false
- WATCHTOWER_INCLUDE_STOPPED=false
volumes:
- /var/run/docker.sock:/var/run/docker.sock
reverse proxy
no web interface
update
it updates itself