From b7424e5c476590131771195128cd19e68c95eabf Mon Sep 17 00:00:00 2001 From: Brian DeHamer Date: Fri, 24 Jul 2015 21:11:49 +0000 Subject: [PATCH] Fix issue where updated containers aren't stopped Used 'break' instead of 'continue' resulting in the termination of the stop container loop any time the watchtower container is encountered. --- actions/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/update.go b/actions/update.go index 529aaa6..ce3f331 100644 --- a/actions/update.go +++ b/actions/update.go @@ -41,7 +41,7 @@ func Update(client container.Client) error { container := containers[i] if container.IsWatchtower() { - break + continue } if container.Stale {