print to log if multiple watchtower instances are detected

pull/241/head^2 v0.3.2
Simon Aronsson 5 years ago
parent 6157c50e4f
commit 7db0aed2a5

@ -3,6 +3,8 @@ package actions
import (
"sort"
log "github.com/sirupsen/logrus"
"github.com/containrrr/watchtower/container"
)
@ -17,6 +19,7 @@ func CheckPrereqs(client container.Client, cleanup bool) error {
}
if len(containers) > 1 {
log.Info("Found multiple running watchtower instances. Cleaning up")
sort.Sort(container.ByCreated(containers))
// Iterate over all containers execept the last one

Loading…
Cancel
Save