
Also requires containerd and golang.org/x/sys vendor updates Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
9 lines
204 B
Go
9 lines
204 B
Go
// +build !windows
|
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
// LCOWSupported returns true if Linux containers on Windows are supported.
|
|
func LCOWSupported() bool {
|
|
return false
|
|
}
|