Merge pull request #17919 from Microsoft/jjh/tp4

Windows [TP4] Require build 10586+
This commit is contained in:
Brian Goff 2015-11-11 19:36:13 -05:00
commit 87de5fdd59

View file

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