1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

LCOW: (Experimental) Require RS5+ builds

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2019-04-18 09:28:56 -07:00
parent 92a6266c9d
commit e0b528fe08

View file

@ -3,6 +3,7 @@ package system // import "github.com/docker/docker/pkg/system"
import ( import (
"os" "os"
"github.com/Microsoft/hcsshim/osversion"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )
@ -15,10 +16,10 @@ var (
containerdRuntimeSupported = false containerdRuntimeSupported = false
) )
// InitLCOW sets whether LCOW is supported or not // InitLCOW sets whether LCOW is supported or not. Requires RS5+
func InitLCOW(experimental bool) { func InitLCOW(experimental bool) {
v := GetOSVersion() v := GetOSVersion()
if experimental && v.Build >= 16299 { if experimental && v.Build >= osversion.RS5 {
lcowSupported = true lcowSupported = true
} }
} }