mirror of https://github.com/containrrr/watchtower
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.
12 lines
567 B
Go
12 lines
567 B
Go
package container
|
|
|
|
import "errors"
|
|
|
|
var errorNoImageInfo = errors.New("no available image info")
|
|
var errorNoContainerInfo = errors.New("no available container info")
|
|
var errorInvalidConfig = errors.New("container configuration missing or invalid")
|
|
var errorLabelNotFound = errors.New("label was not found in container")
|
|
|
|
// ErrorLifecycleSkip is returned by a lifecycle hook when the exit code of the command indicated that it ought to be skipped
|
|
var ErrorLifecycleSkip = errors.New("skipping container as the pre-update command returned exit code 75 (EX_TEMPFAIL)")
|