mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
157b66ad39
Each platform has only a driver now. Signed-off-by: David Calavera <david.calavera@gmail.com>
16 lines
508 B
Go
16 lines
508 B
Go
// +build linux
|
|
|
|
package execdrivers
|
|
|
|
import (
|
|
"path"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
"github.com/docker/docker/daemon/execdriver/native"
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
)
|
|
|
|
// NewDriver returns a new execdriver.Driver from the given name configured with the provided options.
|
|
func NewDriver(options []string, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
|
|
return native.NewDriver(path.Join(root, "execdriver", "native"), initPath, options)
|
|
}
|