mirror of
https://github.com/docker/docs.git
synced 2026-03-29 15:28:51 +07:00
17 lines
322 B
Go
17 lines
322 B
Go
package engine
|
|
|
|
type EngineOptions struct {
|
|
Dns []string
|
|
GraphDir string
|
|
Ipv6 bool
|
|
Labels []string
|
|
LogLevel string
|
|
StorageDriver string
|
|
SelinuxEnabled bool
|
|
TlsCaCert string
|
|
TlsCert string
|
|
TlsKey string
|
|
TlsVerify bool
|
|
RegistryMirror []string
|
|
}
|