mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3d17c3bb66
Addresses: #14756 Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
20 lines
581 B
Go
20 lines
581 B
Go
// +build windows
|
|
|
|
package execdrivers
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
"github.com/docker/docker/daemon/execdriver/windows"
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
)
|
|
|
|
// NewDriver returns a new execdriver.Driver from the given name configured with the provided options.
|
|
func NewDriver(name string, options []string, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
|
|
switch name {
|
|
case "windows":
|
|
return windows.NewDriver(root, initPath, options)
|
|
}
|
|
return nil, fmt.Errorf("unknown exec driver %s", name)
|
|
}
|