mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b3ee9ac74e
Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux)
23 lines
764 B
Go
23 lines
764 B
Go
package execdrivers
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
"github.com/docker/docker/daemon/execdriver/lxc"
|
|
"github.com/docker/docker/daemon/execdriver/native"
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
"path"
|
|
)
|
|
|
|
func NewDriver(name, root, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
|
|
switch name {
|
|
case "lxc":
|
|
// we want to give the lxc driver the full docker root because it needs
|
|
// to access and write config and template files in /var/lib/docker/containers/*
|
|
// to be backwards compatible
|
|
return lxc.NewDriver(root, initPath, sysInfo.AppArmor)
|
|
case "native":
|
|
return native.NewDriver(path.Join(root, "execdriver", "native"), initPath)
|
|
}
|
|
return nil, fmt.Errorf("unknown exec driver %s", name)
|
|
}
|