mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-26 15:16:15 +01:00
Move insecure_tls and timeout options to registry option Rename Bolt bucket Change default schedule Review registry client
12 lines
480 B
Go
12 lines
480 B
Go
package model
|
|
|
|
// Item holds item configuration for a Docker image
|
|
type Item struct {
|
|
Image string `yaml:"image,omitempty" json:",omitempty"`
|
|
RegistryID string `yaml:"registry_id,omitempty" json:",omitempty"`
|
|
WatchRepo bool `yaml:"watch_repo,omitempty" json:",omitempty"`
|
|
IncludeTags []string `yaml:"include_tags,omitempty" json:",omitempty"`
|
|
ExcludeTags []string `yaml:"exclude_tags,omitempty" json:",omitempty"`
|
|
Registry Registry `yaml:"-" json:"-"`
|
|
}
|