full diff: https://github.com/moby/buildkit/compare/9b91d20367db...955c2b2f7d014cf13a0f755d298963f8c0a190b6 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
18 lines
495 B
Go
18 lines
495 B
Go
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"`
|
|
Device bool `json:"device,omitempty"`
|
|
}
|
|
|
|
type BuilderConfig struct {
|
|
Entitlements BuilderEntitlements `json:",omitempty"`
|
|
}
|