2018-02-05 16:05:59 -05:00
|
|
|
package api // import "github.com/docker/docker/api"
|
2016-10-31 13:15:43 -04:00
|
|
|
|
|
|
|
// MinVersion represents Minimum REST API version supported
|
2016-11-04 12:54:58 -04:00
|
|
|
// Technically the first daemon API version released on Windows is v1.25 in
|
|
|
|
// engine version 1.13. However, some clients are explicitly using downlevel
|
2016-12-08 12:35:32 -05:00
|
|
|
// APIs (e.g. docker-compose v2.1 file format) and that is just too restrictive.
|
2016-11-04 12:54:58 -04:00
|
|
|
// Hence also allowing 1.24 on Windows.
|
|
|
|
const MinVersion string = "1.24"
|