소스 검색

Merge pull request #28072 from Microsoft/jjh/api124

Windows: Allow API v1.24
Sebastiaan van Stijn 8 년 전
부모
커밋
24d822d179
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      api/common_windows.go

+ 5 - 1
api/common_windows.go

@@ -1,4 +1,8 @@
 package api
 
 // MinVersion represents Minimum REST API version supported
-const MinVersion string = "1.25"
+// Technically the first daemon API version released on Windows is v1.25 in
+// engine version 1.13. However, some clients are explicitly using downlevel
+// APIs (eg docker-compose v2.1 file format) and that is just too restrictive.
+// Hence also allowing 1.24 on Windows.
+const MinVersion string = "1.24"