mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-21 21:30:48 +02:00

- move common arguments to a shared struct - remove unused fields - fix outdated names - improve logging/error handling
42 lines
1.4 KiB
Go
42 lines
1.4 KiB
Go
package lifecycle
|
|
|
|
import (
|
|
"github.com/containrrr/watchtower/pkg/container"
|
|
"github.com/containrrr/watchtower/pkg/types"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// ExecutePostUpdateCommand tries to run the post-update lifecycle hook for a single container.
|
|
func ExecutePostUpdateCommand(client container.Client, newContainerID types.ContainerID) {
|
|
newContainer, err := client.GetContainer(newContainerID)
|
|
if err != nil {
|
|
log.WithField("containerID", newContainerID.ShortID()).Error(err)
|
|
return
|
|
}
|
|
|
|
err = ExecuteLifeCyclePhaseCommand(types.PostUpdate, client, newContainer)
|
|
if err != nil {
|
|
log.WithField("container", newContainer.Name()).Error(err)
|
|
}
|
|
}
|
|
|
|
// ExecuteLifeCyclePhaseCommand tries to run the corresponding lifecycle hook for a single container.
|
|
func ExecuteLifeCyclePhaseCommand(phase types.LifecyclePhase, client container.Client, container types.Container) error {
|
|
|
|
timeout := container.GetLifecycleTimeout(phase)
|
|
command := container.GetLifecycleCommand(phase)
|
|
clog := log.WithField("container", container.Name())
|
|
|
|
if len(command) == 0 {
|
|
clog.Debugf("No %v command supplied. Skipping", phase)
|
|
return nil
|
|
}
|
|
|
|
if !container.IsRunning() || container.IsRestarting() {
|
|
clog.Debugf("Container is not running. Skipping %v command.", phase)
|
|
return nil
|
|
}
|
|
|
|
clog.Debugf("Executing %v command.", phase)
|
|
return client.ExecuteCommand(container.ID(), command, timeout)
|
|
}
|