mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-09 21:17:09 +08:00
test: add basic integration tests
Signed-off-by: Justin Chadwell <me@jedevc.com>
This commit is contained in:
16
vendor/github.com/moby/buildkit/util/testutil/dockerd/config.go
generated
vendored
Normal file
16
vendor/github.com/moby/buildkit/util/testutil/dockerd/config.go
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
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"`
|
||||
}
|
Reference in New Issue
Block a user