Windows [TP4] Require build 10586+

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2015-11-11 14:47:02 -08:00
parent 6c82fba2b3
commit 122568b314
1 changed files with 3 additions and 0 deletions

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
}