From cc4e17cbbac8196d3ab58e45318612b95bd28994 Mon Sep 17 00:00:00 2001 From: John Howard Date: Thu, 15 Sep 2016 15:20:16 -0700 Subject: [PATCH] Windows: Turn off builds<14393 Signed-off-by: John Howard --- daemon/daemon_windows.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/daemon_windows.go b/daemon/daemon_windows.go index 55ad6c568d..a1f99f5b78 100644 --- a/daemon/daemon_windows.go +++ b/daemon/daemon_windows.go @@ -164,8 +164,8 @@ func checkSystem() error { if osv.MajorVersion < 10 { return fmt.Errorf("This version of Windows does not support the docker daemon") } - if osv.Build < 14300 { - return fmt.Errorf("The docker daemon requires Windows Server 2016 Technical Preview 5 build 14300 or later") + if osv.Build < 14393 { + return fmt.Errorf("The docker daemon requires build 14393 or later of Windows Server 2016 or Windows 10") } return nil }