- Add API support for SCTP port mapping - Add canonical import path - Add `REMOVE` and `ORPHANED` to TaskState - Fix TLS from environment variables in client - Introduce NewClientWithOpts func to build custom client easily - Wrap response errors for container copy methodsto fix error detection using `IsErrNotFound` and `IsErrNotImplemented` for `ContainerStatPath`, `CopyFromContainer`, and `CopyToContainer` methods. - Produce errors when empty ids are passed into inspect calls Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
9 lines
421 B
Go
9 lines
421 B
Go
package api // import "github.com/docker/docker/api"
|
|
|
|
// MinVersion represents Minimum REST API version supported
|
|
// 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 (e.g. docker-compose v2.1 file format) and that is just too restrictive.
|
|
// Hence also allowing 1.24 on Windows.
|
|
const MinVersion string = "1.24"
|