mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Bump API Version to v1.22
Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
parent
3ad9cc996a
commit
22a0ea5550
3 changed files with 2781 additions and 4 deletions
|
@ -18,7 +18,7 @@ import (
|
||||||
// Common constants for daemon and client.
|
// Common constants for daemon and client.
|
||||||
const (
|
const (
|
||||||
// Version of Current REST API
|
// Version of Current REST API
|
||||||
Version version.Version = "1.21"
|
Version version.Version = "1.22"
|
||||||
|
|
||||||
// MinVersion represents Minimun REST API version supported
|
// MinVersion represents Minimun REST API version supported
|
||||||
MinVersion version.Version = "1.12"
|
MinVersion version.Version = "1.12"
|
||||||
|
|
|
@ -23,14 +23,15 @@ client must have `root` access to interact with the daemon. If a group named
|
||||||
`docker` exists on your system, `docker` applies ownership of the socket to the
|
`docker` exists on your system, `docker` applies ownership of the socket to the
|
||||||
group.
|
group.
|
||||||
|
|
||||||
The current version of the API is v1.21 which means calling `/info` is the same
|
The current version of the API is v1.22 which means calling `/info` is the same
|
||||||
as calling `/v1.21/info`. To call an older version of the API use
|
as calling `/v1.22/info`. To call an older version of the API use
|
||||||
`/v1.20/info`.
|
`/v1.21/info`.
|
||||||
|
|
||||||
Use the table below to find the API version for a Docker version:
|
Use the table below to find the API version for a Docker version:
|
||||||
|
|
||||||
Docker version | API version | Changes
|
Docker version | API version | Changes
|
||||||
----------------|-------------------------------------------------|-----------------------------
|
----------------|-------------------------------------------------|-----------------------------
|
||||||
|
1.10.x | [1.22](/reference/api/docker_remote_api_v1.22/) | [API changes](/reference/api/docker_remote_api/#v1-22-api-changes)
|
||||||
1.9.x | [1.21](/reference/api/docker_remote_api_v1.21/) | [API changes](/reference/api/docker_remote_api/#v1-21-api-changes)
|
1.9.x | [1.21](/reference/api/docker_remote_api_v1.21/) | [API changes](/reference/api/docker_remote_api/#v1-21-api-changes)
|
||||||
1.8.x | [1.20](/reference/api/docker_remote_api_v1.20/) | [API changes](/reference/api/docker_remote_api/#v1-20-api-changes)
|
1.8.x | [1.20](/reference/api/docker_remote_api_v1.20/) | [API changes](/reference/api/docker_remote_api/#v1-20-api-changes)
|
||||||
1.7.x | [1.19](/reference/api/docker_remote_api_v1.19/) | [API changes](/reference/api/docker_remote_api/#v1-19-api-changes)
|
1.7.x | [1.19](/reference/api/docker_remote_api_v1.19/) | [API changes](/reference/api/docker_remote_api/#v1-19-api-changes)
|
||||||
|
@ -89,6 +90,11 @@ Running `docker rmi` emits an **untag** event when removing an image name. The
|
||||||
|
|
||||||
This section lists each version from latest to oldest. Each listing includes a link to the full documentation set and the changes relevant in that release.
|
This section lists each version from latest to oldest. Each listing includes a link to the full documentation set and the changes relevant in that release.
|
||||||
|
|
||||||
|
### v1.22 API changes
|
||||||
|
|
||||||
|
[Docker Remote API v1.22](docker_remote_api_v1.22.md) documentation
|
||||||
|
|
||||||
|
|
||||||
### v1.21 API changes
|
### v1.21 API changes
|
||||||
|
|
||||||
[Docker Remote API v1.21](docker_remote_api_v1.21.md) documentation
|
[Docker Remote API v1.21](docker_remote_api_v1.21.md) documentation
|
||||||
|
|
2771
docs/reference/api/docker_remote_api_v1.22.md
Normal file
2771
docs/reference/api/docker_remote_api_v1.22.md
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue