1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Windows [TP4] Require build 10586+

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 122568b31465127537197cf6d9575b00bdd02045
Component: engine
This commit is contained in:
John Howard
2015-11-11 14:47:02 -08:00
parent 470099dd9c
commit a3794d804f

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
}