
Update cri and docker to recent commits for mips enablement Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> 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
|
|
}
|