Windows: Turn off builds<14393

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: cc4e17cbbac8196d3ab58e45318612b95bd28994
Component: engine
This commit is contained in:
John Howard
2016-09-15 15:20:16 -07:00
parent 4efffd499d
commit 18e664bb52

View File

@ -164,8 +164,8 @@ func checkSystem() error {
if osv.MajorVersion < 10 {
return fmt.Errorf("This version of Windows does not support the docker daemon")
}
if osv.Build < 14300 {
return fmt.Errorf("The docker daemon requires Windows Server 2016 Technical Preview 5 build 14300 or later")
if osv.Build < 14393 {
return fmt.Errorf("The docker daemon requires build 14393 or later of Windows Server 2016 or Windows 10")
}
return nil
}