print to log if multiple watchtower instances are detected

This commit is contained in:
Simon Aronsson 2019-04-06 14:27:50 +02:00
parent 6157c50e4f
commit 7db0aed2a5

View file

@ -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