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.
17 lines
351 B
Go
17 lines
351 B
Go
package actions
|
|
|
|
import (
|
|
t "github.com/containrrr/watchtower/pkg/types"
|
|
"time"
|
|
)
|
|
|
|
// UpdateParams contains all different options available to alter the behavior of the Update func
|
|
type UpdateParams struct {
|
|
Filter t.Filter
|
|
Cleanup bool
|
|
NoRestart bool
|
|
Timeout time.Duration
|
|
MonitorOnly bool
|
|
LifecycleHooks bool
|
|
}
|