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
446 B
Go
17 lines
446 B
Go
2 years ago
|
package dockerd
|
||
|
|
||
|
type Config struct {
|
||
|
Features map[string]bool `json:"features,omitempty"`
|
||
|
Mirrors []string `json:"registry-mirrors,omitempty"`
|
||
|
Builder BuilderConfig `json:"builder,omitempty"`
|
||
|
}
|
||
|
|
||
|
type BuilderEntitlements struct {
|
||
|
NetworkHost bool `json:"network-host,omitempty"`
|
||
|
SecurityInsecure bool `json:"security-insecure,omitempty"`
|
||
|
}
|
||
|
|
||
|
type BuilderConfig struct {
|
||
|
Entitlements BuilderEntitlements `json:",omitempty"`
|
||
|
}
|