2015-07-21 18:04:41 +02:00
|
|
|
package actions
|
2015-07-13 23:41:04 +02:00
|
|
|
|
|
|
|
import (
|
2019-07-22 10:20:11 +02:00
|
|
|
"github.com/containrrr/watchtower/internal/util"
|
2019-07-21 20:14:28 +02:00
|
|
|
"github.com/containrrr/watchtower/pkg/container"
|
2020-01-12 00:35:25 +02:00
|
|
|
"github.com/containrrr/watchtower/pkg/lifecycle"
|
|
|
|
"github.com/containrrr/watchtower/pkg/sorter"
|
|
|
|
"github.com/containrrr/watchtower/pkg/types"
|
2019-04-04 23:08:44 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
2015-07-13 23:41:04 +02:00
|
|
|
)
|
|
|
|
|
2015-08-01 00:23:17 +02:00
|
|
|
// 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.
|
2020-01-12 00:35:25 +02:00
|
|
|
func Update(client container.Client, params types.UpdateParams) error {
|
2017-04-12 18:32:00 +02:00
|
|
|
log.Debug("Checking containers for updated images")
|
2015-07-22 23:58:16 +02:00
|
|
|
|
2020-01-12 00:35:25 +02:00
|
|
|
if params.LifecycleHooks {
|
|
|
|
lifecycle.ExecutePreChecks(client, params)
|
|
|
|
}
|
2019-09-15 16:58:46 +02:00
|
|
|
|
2019-04-07 15:52:56 +02:00
|
|
|
containers, err := client.ListContainers(params.Filter)
|
2015-07-13 23:41:04 +02:00
|
|
|
if err != nil {
|
2015-07-14 22:51:12 +02:00
|
|
|
return err
|
2015-07-13 23:41:04 +02:00
|
|
|
}
|
|
|
|
|
2015-07-22 00:41:58 +02:00
|
|
|
for i, container := range containers {
|
|
|
|
stale, err := client.IsContainerStale(container)
|
|
|
|
if err != nil {
|
2019-04-07 15:52:56 +02:00
|
|
|
log.Infof("Unable to update container %s. Proceeding to next.", containers[i].Name())
|
|
|
|
log.Debug(err)
|
2016-10-13 19:14:41 +02:00
|
|
|
stale = false
|
2015-07-14 22:51:12 +02:00
|
|
|
}
|
2015-07-22 00:41:58 +02:00
|
|
|
containers[i].Stale = stale
|
2015-07-14 22:51:12 +02:00
|
|
|
}
|
2015-07-13 23:41:04 +02:00
|
|
|
|
2020-01-12 00:35:25 +02:00
|
|
|
containers, err = sorter.SortByDependencies(containers)
|
2015-07-14 22:51:12 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-07-13 23:41:04 +02:00
|
|
|
|
2015-07-14 22:51:12 +02:00
|
|
|
checkDependencies(containers)
|
2015-07-13 23:41:04 +02:00
|
|
|
|
2019-04-07 15:52:56 +02:00
|
|
|
if params.MonitorOnly {
|
2020-01-12 00:35:25 +02:00
|
|
|
if params.LifecycleHooks {
|
|
|
|
lifecycle.ExecutePostChecks(client, params)
|
|
|
|
}
|
2019-04-07 15:52:56 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-07-22 10:20:11 +02:00
|
|
|
stopContainersInReversedOrder(containers, client, params)
|
|
|
|
restartContainersInSortedOrder(containers, client, params)
|
|
|
|
|
2020-01-12 00:35:25 +02:00
|
|
|
if params.LifecycleHooks {
|
|
|
|
lifecycle.ExecutePostChecks(client, params)
|
|
|
|
}
|
2019-07-22 10:20:11 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-01-12 00:35:25 +02:00
|
|
|
func stopContainersInReversedOrder(containers []container.Container, client container.Client, params types.UpdateParams) {
|
2015-07-14 22:51:12 +02:00
|
|
|
for i := len(containers) - 1; i >= 0; i-- {
|
2019-07-22 10:20:11 +02:00
|
|
|
stopStaleContainer(containers[i], client, params)
|
|
|
|
}
|
|
|
|
}
|
2015-07-21 00:54:18 +02:00
|
|
|
|
2020-01-12 00:35:25 +02:00
|
|
|
func stopStaleContainer(container container.Container, client container.Client, params types.UpdateParams) {
|
2019-07-22 10:20:11 +02:00
|
|
|
if container.IsWatchtower() {
|
|
|
|
log.Debugf("This is the watchtower container %s", container.Name())
|
|
|
|
return
|
|
|
|
}
|
2015-07-21 00:54:18 +02:00
|
|
|
|
2019-07-22 10:20:11 +02:00
|
|
|
if !container.Stale {
|
|
|
|
return
|
2015-07-14 22:51:12 +02:00
|
|
|
}
|
2020-01-12 00:35:25 +02:00
|
|
|
if params.LifecycleHooks {
|
|
|
|
lifecycle.ExecutePreUpdateCommand(client, container)
|
2015-07-13 23:41:04 +02:00
|
|
|
|
2020-01-12 00:35:25 +02:00
|
|
|
}
|
2019-07-27 01:37:16 +02:00
|
|
|
|
|
|
|
if err := client.StopContainer(container, params.Timeout); err != nil {
|
2019-07-22 10:20:11 +02:00
|
|
|
log.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-12 00:35:25 +02:00
|
|
|
func restartContainersInSortedOrder(containers []container.Container, client container.Client, params types.UpdateParams) {
|
2020-01-11 01:28:27 +02:00
|
|
|
imageIDs := make(map[string]bool)
|
|
|
|
|
2015-07-14 22:51:12 +02:00
|
|
|
for _, container := range containers {
|
2019-07-22 10:20:11 +02:00
|
|
|
if !container.Stale {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
restartStaleContainer(container, client, params)
|
2020-01-11 01:28:27 +02:00
|
|
|
imageIDs[container.ImageID()] = true
|
2019-10-13 22:46:06 +02:00
|
|
|
}
|
|
|
|
if params.Cleanup {
|
2020-01-11 01:28:27 +02:00
|
|
|
for imageID := range imageIDs {
|
|
|
|
if err := client.RemoveImageByID(imageID); err != nil {
|
2019-10-13 22:46:06 +02:00
|
|
|
log.Error(err)
|
|
|
|
}
|
|
|
|
}
|
2019-07-22 10:20:11 +02:00
|
|
|
}
|
|
|
|
}
|
2015-07-21 00:54:18 +02:00
|
|
|
|
2020-01-12 00:35:25 +02:00
|
|
|
func restartStaleContainer(container container.Container, client container.Client, params types.UpdateParams) {
|
2019-07-22 10:20:11 +02:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
}
|
2015-07-31 20:24:27 +02:00
|
|
|
|
2019-07-22 10:20:11 +02:00
|
|
|
if !params.NoRestart {
|
2019-07-27 01:37:16 +02:00
|
|
|
if newContainerID, err := client.StartContainer(container); err != nil {
|
2019-07-22 10:20:11 +02:00
|
|
|
log.Error(err)
|
2019-07-27 01:37:16 +02:00
|
|
|
} else if container.Stale && params.LifecycleHooks {
|
2020-01-12 00:35:25 +02:00
|
|
|
lifecycle.ExecutePostUpdateCommand(client, newContainerID)
|
2015-07-13 23:41:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-21 18:04:41 +02:00
|
|
|
func checkDependencies(containers []container.Container) {
|
2015-07-13 23:41:04 +02:00
|
|
|
|
2015-07-14 22:51:12 +02:00
|
|
|
for i, parent := range containers {
|
2019-07-27 01:37:16 +02:00
|
|
|
if parent.ToRestart() {
|
2015-07-14 22:51:12 +02:00
|
|
|
continue
|
|
|
|
}
|
2015-07-13 23:41:04 +02:00
|
|
|
|
2015-07-14 22:51:12 +02:00
|
|
|
LinkLoop:
|
|
|
|
for _, linkName := range parent.Links() {
|
|
|
|
for _, child := range containers {
|
2019-07-27 01:37:16 +02:00
|
|
|
if child.Name() == linkName && child.ToRestart() {
|
|
|
|
containers[i].Linked = true
|
2015-07-14 22:51:12 +02:00
|
|
|
break LinkLoop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-13 23:41:04 +02:00
|
|
|
}
|
|
|
|
}
|