Files
docker-machine/libmachine/engine/engine.go
T

18 lines
403 B
Go
Raw Normal View History

2015-03-19 16:04:43 -04:00
package engine
2015-11-04 17:28:31 -08:00
type Options struct {
2015-04-17 15:15:49 -07:00
ArbitraryFlags []string
2015-11-04 17:28:31 -08:00
DNS []string `json:"Dns"`
2015-04-17 15:15:49 -07:00
GraphDir string
Env []string
2015-04-17 15:15:49 -07:00
Ipv6 bool
InsecureRegistry []string
Labels []string
LogLevel string
StorageDriver string
SelinuxEnabled bool
2015-11-04 17:28:31 -08:00
TLSVerify bool `json:"TlsVerify"`
2015-04-17 15:15:49 -07:00
RegistryMirror []string
InstallURL string
2015-03-19 16:04:43 -04:00
}