A process for automating Docker container base image updates. https://containrrr.dev/watchtower/
Find a file
Brian DeHamer e21c21ec3b Account for latency in container removal
Under certain conditions when watchtower is monitoring a Docker Swarm
cluster there would be cases where an updated container could not be
started because the old hadn't yet been removed (name conflicts, mapped
port conflicts, etc). We suspect that this has something to do with the
async nature of swarm and even though we've asked the swarm master to
remove a container it may not be completely removed from the associated
node. The fix is to do some polling after the remove container call to
ensure that the container is truly gone before proceeding.
2015-07-28 19:29:20 +00:00
actions Fix issue where updated containers aren't stopped 2015-07-24 21:11:49 +00:00
container Account for latency in container removal 2015-07-28 19:29:20 +00:00
Godeps Support --debug flag 2015-07-22 21:58:16 +00:00
circle.yml Set-up CircleCI builds 2015-07-16 19:04:39 +00:00
Dockerfile Enable watchtower to update itself 2015-07-20 22:54:18 +00:00
main.go Support TLS connections to remote daemons 2015-07-27 17:10:12 +00:00
README.md Initial commit 2015-07-13 21:42:33 +00:00

Watchtower

A process for watching your Docker containers and automatically restarting them whenever their base image is refreshed.