Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux) Upstream-commit: b3ee9ac74e171e00f14027e39278013629e681b8 Component: engine
14 lines
237 B
Go
14 lines
237 B
Go
// +build !linux
|
|
|
|
package native
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
func NewDriver(root, initPath string) (execdriver.Driver, error) {
|
|
return nil, fmt.Errorf("native driver not supported on non-linux")
|
|
}
|