mirror of https://github.com/docker/docs.git
21 lines
452 B
Go
21 lines
452 B
Go
package engine
|
|
|
|
type EngineOptions struct {
|
|
ArbitraryFlags []string
|
|
Dns []string
|
|
GraphDir string
|
|
Env []string
|
|
Ipv6 bool
|
|
InsecureRegistry []string
|
|
Labels []string
|
|
LogLevel string
|
|
StorageDriver string
|
|
SelinuxEnabled bool
|
|
TlsCaCert string
|
|
TlsCert string
|
|
TlsKey string
|
|
TlsVerify bool
|
|
RegistryMirror []string
|
|
InstallURL string
|
|
}
|