ed4d2aa981
Signed-off-by: John Howard <jhoward@microsoft.com> Adds the graphdriver for Linux containers on Windows
8 lines
156 B
Go
8 lines
156 B
Go
// +build !windows
|
|
|
|
package system
|
|
|
|
// LCOWSupported returns true if Linux containers on Windows are supported.
|
|
func LCOWSupported() bool {
|
|
return false
|
|
}
|