Files
docker-machine/libmachine/engine/engine.go
Nathan LeClaire 2574c8ba5d Implement configurable engine options
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-04-29 17:58:14 -07:00

19 lines
400 B
Go

package engine
type EngineOptions struct {
ArbitraryFlags []string
Dns []string
GraphDir string
Ipv6 bool
InsecureRegistry []string
Labels []string
LogLevel string
StorageDriver string
SelinuxEnabled bool
TlsCaCert string
TlsCert string
TlsKey string
TlsVerify bool
RegistryMirror []string
}