Browse code

Windows [TP4] Require build 10586+

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2015/11/12 07:47:02
Showing 1 changed files
... ...
@@ -71,6 +71,9 @@ func checkSystem() error {
71 71
 	if osv.MajorVersion < 10 {
72 72
 		return fmt.Errorf("This version of Windows does not support the docker daemon")
73 73
 	}
74
+	if osv.Build < 10586 {
75
+		return fmt.Errorf("The Windows daemon requires Windows Server 2016 Technical Preview 4, build 10586 or later")
76
+	}
74 77
 	return nil
75 78
 }
76 79