common_windows.go 421 B

12345678
  1. package api // import "github.com/docker/docker/api"
  2. // MinVersion represents Minimum REST API version supported
  3. // Technically the first daemon API version released on Windows is v1.25 in
  4. // engine version 1.13. However, some clients are explicitly using downlevel
  5. // APIs (e.g. docker-compose v2.1 file format) and that is just too restrictive.
  6. // Hence also allowing 1.24 on Windows.
  7. const MinVersion string = "1.24"