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 95
95
"labels" : {"$ref" : " #/definitions/list_or_dict" },
96
96
"cache_from" : {"type" : " array" , "items" : {"type" : " string" }},
97
97
"cache_to" : {"type" : " array" , "items" : {"type" : " string" }},
98
+ "no_cache" : {"type" : " boolean" },
98
99
"network" : {"type" : " string" },
100
+ "pull" : {"type" : " boolean" },
99
101
"target" : {"type" : " string" },
100
102
"shm_size" : {"type" : [" integer" , " string" ]},
101
103
"extra_hosts" : {"$ref" : " #/definitions/list_or_dict" },
Original file line number Diff line number Diff line change @@ -298,6 +298,8 @@ type BuildConfig struct {
298
298
Labels Labels `yaml:",omitempty" json:"labels,omitempty"`
299
299
CacheFrom StringList `mapstructure:"cache_from" yaml:"cache_from,omitempty" json:"cache_from,omitempty"`
300
300
CacheTo StringList `mapstructure:"cache_to" yaml:"cache_to,omitempty" json:"cache_to,omitempty"`
301
+ NoCache bool `mapstructure:"no_cache" yaml:"no_cache,omitempty" json:"no_cache,omitempty"`
302
+ Pull bool `mapstructure:"pull" yaml:"pull,omitempty" json:"pull,omitempty"`
301
303
ExtraHosts HostsList `mapstructure:"extra_hosts" yaml:"extra_hosts,omitempty" json:"extra_hosts,omitempty"`
302
304
Isolation string `yaml:",omitempty" json:"isolation,omitempty"`
303
305
Network string `yaml:",omitempty" json:"network,omitempty"`
You can’t perform that action at this time.
0 commit comments