Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 8db09ff6290fb2d4aea121c2850940b9bc480ce9 Component: engine
14 lines
243 B
Go
14 lines
243 B
Go
// +build !windows
|
|
|
|
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
func NewDriver(root, initPath string) (execdriver.Driver, error) {
|
|
return nil, fmt.Errorf("Windows driver not supported on non-Windows")
|
|
}
|