mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Bump API Version to v1.23
Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
parent
9b63019711
commit
a0fab35fe8
3 changed files with 3186 additions and 4 deletions
|
@ -18,7 +18,7 @@ import (
|
|||
// Common constants for daemon and client.
|
||||
const (
|
||||
// Version of Current REST API
|
||||
DefaultVersion version.Version = "1.22"
|
||||
DefaultVersion version.Version = "1.23"
|
||||
|
||||
// MinVersion represents Minimum REST API version supported
|
||||
MinVersion version.Version = "1.12"
|
||||
|
|
|
@ -24,14 +24,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
|
||||
group.
|
||||
|
||||
The current version of the API is v1.22 which means calling `/info` is the same
|
||||
as calling `/v1.22/info`. To call an older version of the API use
|
||||
`/v1.21/info`.
|
||||
The current version of the API is v1.23 which means calling `/info` is the same
|
||||
as calling `/v1.23/info`. To call an older version of the API use
|
||||
`/v1.22/info`.
|
||||
|
||||
Use the table below to find the API version for a Docker version:
|
||||
|
||||
Docker version | API version | Changes
|
||||
----------------|------------------------------------|------------------------------------------------------
|
||||
1.11.x | [1.23](docker_remote_api_v1.23.md) | [API changes](docker_remote_api.md#v1-23-api-changes)
|
||||
1.10.x | [1.22](docker_remote_api_v1.22.md) | [API changes](docker_remote_api.md#v1-22-api-changes)
|
||||
1.9.x | [1.21](docker_remote_api_v1.21.md) | [API changes](docker_remote_api.md#v1-21-api-changes)
|
||||
1.8.x | [1.20](docker_remote_api_v1.20.md) | [API changes](docker_remote_api.md#v1-20-api-changes)
|
||||
|
@ -91,6 +92,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.
|
||||
|
||||
### v1.23 API changes
|
||||
|
||||
[Docker Remote API v1.23](docker_remote_api_v1.23.md) documentation
|
||||
|
||||
|
||||
### v1.22 API changes
|
||||
|
||||
[Docker Remote API v1.22](docker_remote_api_v1.22.md) documentation
|
||||
|
|
3176
docs/reference/api/docker_remote_api_v1.23.md
Normal file
3176
docs/reference/api/docker_remote_api_v1.23.md
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue