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