mirror of https://github.com/docker/docs.git
22 lines
434 B
Go
22 lines
434 B
Go
package engine
|
|
|
|
const (
|
|
DefaultPort = 2376
|
|
)
|
|
|
|
type Options struct {
|
|
ArbitraryFlags []string
|
|
DNS []string `json:"Dns"`
|
|
GraphDir string
|
|
Env []string
|
|
Ipv6 bool
|
|
InsecureRegistry []string
|
|
Labels []string
|
|
LogLevel string
|
|
StorageDriver string
|
|
SelinuxEnabled bool
|
|
TLSVerify bool `json:"TlsVerify"`
|
|
RegistryMirror []string
|
|
InstallURL string
|
|
}
|