mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-22 05:40:50 +02:00
16 lines
315 B
Go
16 lines
315 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
|
||
|
}
|