You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
Go
43 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)
|
|
}
|