Jelajahi Sumber

LCOW: (Experimental) Require RS5+ builds

Signed-off-by: John Howard <jhoward@microsoft.com>
John Howard 6 tahun lalu
induk
melakukan
e0b528fe08
1 mengubah file dengan 3 tambahan dan 2 penghapusan
  1. 3 2
      pkg/system/init_windows.go

+ 3 - 2
pkg/system/init_windows.go

@@ -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
 	}
 	}
 }
 }