mirror of https://github.com/docker/docs.git
Merge pull request #6985 from vieux/fix_api_1.14
bump api to 1.14 & update docs
This commit is contained in:
commit
00c1668011
|
@ -11,7 +11,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
APIVERSION version.Version = "1.13"
|
APIVERSION version.Version = "1.14"
|
||||||
DEFAULTHTTPHOST = "127.0.0.1"
|
DEFAULTHTTPHOST = "127.0.0.1"
|
||||||
DEFAULTUNIXSOCKET = "/var/run/docker.sock"
|
DEFAULTUNIXSOCKET = "/var/run/docker.sock"
|
||||||
)
|
)
|
||||||
|
|
|
@ -104,6 +104,7 @@ pages:
|
||||||
- ['reference/api/registry_api.md', 'Reference', 'Docker Registry API']
|
- ['reference/api/registry_api.md', 'Reference', 'Docker Registry API']
|
||||||
- ['reference/api/hub_registry_spec.md', 'Reference', 'Docker Hub and Registry Spec']
|
- ['reference/api/hub_registry_spec.md', 'Reference', 'Docker Hub and Registry Spec']
|
||||||
- ['reference/api/docker_remote_api.md', 'Reference', 'Docker Remote API']
|
- ['reference/api/docker_remote_api.md', 'Reference', 'Docker Remote API']
|
||||||
|
- ['reference/api/docker_remote_api_v1.14.md', 'Reference', 'Docker Remote API v1.14']
|
||||||
- ['reference/api/docker_remote_api_v1.13.md', 'Reference', 'Docker Remote API v1.13']
|
- ['reference/api/docker_remote_api_v1.13.md', 'Reference', 'Docker Remote API v1.13']
|
||||||
- ['reference/api/docker_remote_api_v1.12.md', 'Reference', 'Docker Remote API v1.12']
|
- ['reference/api/docker_remote_api_v1.12.md', 'Reference', 'Docker Remote API v1.12']
|
||||||
- ['reference/api/docker_remote_api_v1.11.md', 'Reference', 'Docker Remote API v1.11']
|
- ['reference/api/docker_remote_api_v1.11.md', 'Reference', 'Docker Remote API v1.11']
|
||||||
|
|
|
@ -18,13 +18,21 @@ page_keywords: API, Docker, rcli, REST, documentation
|
||||||
encoded (JSON) string with credentials:
|
encoded (JSON) string with credentials:
|
||||||
`{'username': string, 'password': string, 'email': string, 'serveraddress' : string}`
|
`{'username': string, 'password': string, 'email': string, 'serveraddress' : string}`
|
||||||
|
|
||||||
The current version of the API is v1.13
|
The current version of the API is v1.14
|
||||||
|
|
||||||
Calling `/images/<name>/insert` is the same as calling
|
Calling `/images/<name>/insert` is the same as calling
|
||||||
`/v1.13/images/<name>/insert`.
|
`/v1.14/images/<name>/insert`.
|
||||||
|
|
||||||
You can still call an old version of the API using
|
You can still call an old version of the API using
|
||||||
`/v1.12/images/<name>/insert`.
|
`/v1.13/images/<name>/insert`.
|
||||||
|
|
||||||
|
## v1.14
|
||||||
|
|
||||||
|
### Full Documentation
|
||||||
|
|
||||||
|
[*Docker Remote API v1.14*](/reference/api/docker_remote_api_v1.14/)
|
||||||
|
|
||||||
|
### What's new
|
||||||
|
|
||||||
## v1.13
|
## v1.13
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
page_title: Remote API v1.12
|
page_title: Remote API v1.13
|
||||||
page_description: API Documentation for Docker
|
page_description: API Documentation for Docker
|
||||||
page_keywords: API, Docker, rcli, REST, documentation
|
page_keywords: API, Docker, rcli, REST, documentation
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue