зеркало из https://github.com/microsoft/docker.git
Windows: Set default exec driver to windows
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
Родитель
0d445685b8
Коммит
041ba90dbb
|
@ -76,7 +76,7 @@ func (config *Config) InstallCommonFlags() {
|
|||
flag.StringVar(&config.Bridge.DefaultGatewayIPv6, []string{"-default-gateway-v6"}, "", "Container default gateway IPv6 address")
|
||||
flag.BoolVar(&config.Bridge.InterContainerCommunication, []string{"#icc", "-icc"}, true, "Enable inter-container communication")
|
||||
flag.StringVar(&config.GraphDriver, []string{"s", "-storage-driver"}, "", "Storage driver to use")
|
||||
flag.StringVar(&config.ExecDriver, []string{"e", "-exec-driver"}, "native", "Exec driver to use")
|
||||
flag.StringVar(&config.ExecDriver, []string{"e", "-exec-driver"}, defaultExec, "Exec driver to use")
|
||||
flag.IntVar(&config.Mtu, []string{"#mtu", "-mtu"}, 0, "Set the containers network MTU")
|
||||
flag.BoolVar(&config.EnableCors, []string{"#api-enable-cors", "#-api-enable-cors"}, false, "Enable CORS headers in the remote API, this is deprecated by --api-cors-header")
|
||||
flag.StringVar(&config.CorsHeaders, []string{"-api-cors-header"}, "", "Set CORS headers in the remote API")
|
||||
|
|
|
@ -9,6 +9,7 @@ import (
|
|||
var (
|
||||
defaultPidFile = "/var/run/docker.pid"
|
||||
defaultGraph = "/var/lib/docker"
|
||||
defaultExec = "native"
|
||||
)
|
||||
|
||||
// Config defines the configuration of a docker daemon.
|
||||
|
|
|
@ -7,6 +7,7 @@ import (
|
|||
var (
|
||||
defaultPidFile = os.Getenv("programdata") + string(os.PathSeparator) + "docker.pid"
|
||||
defaultGraph = os.Getenv("programdata") + string(os.PathSeparator) + "docker"
|
||||
defaultExec = "windows"
|
||||
)
|
||||
|
||||
// Config defines the configuration of a docker daemon.
|
||||
|
|
Загрузка…
Ссылка в новой задаче