File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 9494 "labels" : {"$ref" : " #/definitions/list_or_dict" },
9595 "cache_from" : {"type" : " array" , "items" : {"type" : " string" }},
9696 "cache_to" : {"type" : " array" , "items" : {"type" : " string" }},
97+ "no_cache" : {"type" : " boolean" },
9798 "network" : {"type" : " string" },
99+ "pull" : {"type" : " boolean" },
98100 "target" : {"type" : " string" },
99101 "shm_size" : {"type" : [" integer" , " string" ]},
100102 "extra_hosts" : {"$ref" : " #/definitions/list_or_dict" },
Original file line number Diff line number Diff line change @@ -297,6 +297,8 @@ type BuildConfig struct {
297297 Labels Labels `yaml:",omitempty" json:"labels,omitempty"`
298298 CacheFrom StringList `mapstructure:"cache_from" yaml:"cache_from,omitempty" json:"cache_from,omitempty"`
299299 CacheTo StringList `mapstructure:"cache_to" yaml:"cache_to,omitempty" json:"cache_to,omitempty"`
300+ NoCache bool `mapstructure:"no_cache" yaml:"no_cache,omitempty" json:"no_cache,omitempty"`
301+ Pull bool `mapstructure:"pull" yaml:"pull,omitempty" json:"pull,omitempty"`
300302 ExtraHosts HostsList `mapstructure:"extra_hosts" yaml:"extra_hosts,omitempty" json:"extra_hosts,omitempty"`
301303 Isolation string `yaml:",omitempty" json:"isolation,omitempty"`
302304 Network string `yaml:",omitempty" json:"network,omitempty"`
You can’t perform that action at this time.
0 commit comments