Browse Source

Specify the required version while the version not support daemon
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>

lixiaobing10051267 8 năm trước cách đây
mục cha
commit
b4b9efd4c5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      daemon/daemon_windows.go

+ 1 - 1
daemon/daemon_windows.go

@@ -165,7 +165,7 @@ func checkSystem() error {
 		return fmt.Errorf("This version of Windows does not support the docker daemon")
 	}
 	if osv.Build < 14300 {
-		return fmt.Errorf("The Windows daemon requires Windows Server 2016 Technical Preview 5 build 14300 or later")
+		return fmt.Errorf("The docker daemon requires Windows Server 2016 Technical Preview 5 build 14300 or later")
 	}
 	return nil
 }