package actions import ( "github.com/containrrr/watchtower/internal/util" "github.com/containrrr/watchtower/pkg/container" log "github.com/sirupsen/logrus" ) // Update looks at the running Docker containers to see if any of the images // used to start those containers have been updated. If a change is detected in // any of the images, the associated containers are stopped and restarted with // the new image. func Update(client container.Client, params UpdateParams) error { log.Debug("Checking containers for updated images") executePreCheck(client, params) containers, err := client.ListContainers(params.Filter) if err != nil { return err } for i, container := range containers { stale, err := client.IsContainerStale(container) if err != nil { log.Infof("Unable to update container %s. Proceeding to next.", containers[i].Name()) log.Debug(err) stale = false } containers[i].Stale = stale } containers, err = container.SortByDependencies(containers) if err != nil { return err } checkDependencies(containers) if params.MonitorOnly { executePostCheck(client, params) return nil } stopContainersInReversedOrder(containers, client, params) restartContainersInSortedOrder(containers, client, params) executePostCheck(client, params) return nil } func stopContainersInReversedOrder(containers []container.Container, client container.Client, params UpdateParams) { for i := len(containers) - 1; i >= 0; i-- { stopStaleContainer(containers[i], client, params) } } func stopStaleContainer(container container.Container, client container.Client, params UpdateParams) { if container.IsWatchtower() { log.Debugf("This is the watchtower container %s", container.Name()) return } if !container.Stale { return } executePreUpdateCommand(client, container) if err := client.StopContainer(container, params.Timeout); err != nil { log.Error(err) } } func restartContainersInSortedOrder(containers []container.Container, client container.Client, params UpdateParams) { for _, container := range containers { if !container.Stale { continue } restartStaleContainer(container, client, params) } } func restartStaleContainer(container container.Container, client container.Client, params UpdateParams) { // Since we can't shutdown a watchtower container immediately, we need to // start the new one while the old one is still running. This prevents us // from re-using the same container name so we first rename the current // instance so that the new one can adopt the old name. if container.IsWatchtower() { if err := client.RenameContainer(container, util.RandName()); err != nil { log.Error(err) return } } if !params.NoRestart { if newContainerID, err := client.StartContainer(container); err != nil { log.Error(err) } else if container.Stale && params.LifecycleHooks { executePostUpdateCommand(client, newContainerID) } } if params.Cleanup { if err := client.RemoveImage(container); err != nil { log.Error(err) } } } func checkDependencies(containers []container.Container) { for i, parent := range containers { if parent.ToRestart() { continue } LinkLoop: for _, linkName := range parent.Links() { for _, child := range containers { if child.Name() == linkName && child.ToRestart() { containers[i].Linked = true break LinkLoop } } } } } func executePreCheck(client container.Client, params UpdateParams) { containers, err := client.ListContainers(params.Filter) if err != nil { return } for _, container := range containers { executePreCheckCommand(client, container) } } func executePostCheck(client container.Client, params UpdateParams) { containers, err := client.ListContainers(params.Filter) if err != nil { return } for _, container := range containers { executePostCheckCommand(client, container) } } func executePreCheckCommand(client container.Client, container container.Container) { command := container.GetLifecyclePreCheckCommand() if len(command) == 0 { log.Debug("No pre-check command supplied. Skipping") return } log.Info("Executing pre-check command.") if err := client.ExecuteCommand(container.ID(), command); err != nil { log.Error(err) } } func executePostCheckCommand(client container.Client, container container.Container) { command := container.GetLifecyclePostCheckCommand() if len(command) == 0 { log.Debug("No post-check command supplied. Skipping") return } log.Info("Executing post-check command.") if err := client.ExecuteCommand(container.ID(), command); err != nil { log.Error(err) } } func executePreUpdateCommand(client container.Client, container container.Container) { command := container.GetLifecyclePreUpdateCommand() if len(command) == 0 { log.Debug("No pre-update command supplied. Skipping") return } log.Info("Executing pre-update command.") if err := client.ExecuteCommand(container.ID(), command); err != nil { log.Error(err) } } func executePostUpdateCommand(client container.Client, newContainerID string) { newContainer, err := client.GetContainer(newContainerID) if err != nil { log.Error(err) return } command := newContainer.GetLifecyclePostUpdateCommand() if len(command) == 0 { log.Debug("No post-update command supplied. Skipping") return } log.Info("Executing post-update command.") if err := client.ExecuteCommand(newContainerID, command); err != nil { log.Error(err) } }