Browse code

Windows: Turn off builds<14393

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

John Howard authored on 2016/09/16 07:20:16
Showing 1 changed files
... ...
@@ -164,8 +164,8 @@ func checkSystem() error {
164 164
 	if osv.MajorVersion < 10 {
165 165
 		return fmt.Errorf("This version of Windows does not support the docker daemon")
166 166
 	}
167
-	if osv.Build < 14300 {
168
-		return fmt.Errorf("The docker daemon requires Windows Server 2016 Technical Preview 5 build 14300 or later")
167
+	if osv.Build < 14393 {
168
+		return fmt.Errorf("The docker daemon requires build 14393 or later of Windows Server 2016 or Windows 10")
169 169
 	}
170 170
 	return nil
171 171
 }