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