mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #12005 from LK4D4/bump_docs
Bump API version and docs to v1.19
This commit is contained in:
commit
3fe7a3d537
4 changed files with 2080 additions and 5 deletions
|
@ -16,7 +16,7 @@ import (
|
|||
|
||||
// Common constants for daemon and client.
|
||||
const (
|
||||
APIVERSION version.Version = "1.18" // Current REST API version
|
||||
APIVERSION version.Version = "1.19" // Current REST API version
|
||||
DEFAULTHTTPHOST = "127.0.0.1" // Default HTTP Host used if only port is provided to -H flag e.g. docker -d -H tcp://:8080
|
||||
DEFAULTUNIXSOCKET = "/var/run/docker.sock" // Docker daemon by default always listens on the default unix socket
|
||||
DefaultDockerfileName string = "Dockerfile" // Default filename with Docker commands, read by docker build
|
||||
|
|
|
@ -139,9 +139,10 @@ pages:
|
|||
- ['reference/api/hub_registry_spec.md', 'Reference', 'Docker Hub and Registry Spec']
|
||||
#- ['reference/image-spec-v1.md', 'Reference', 'Docker Image Specification v1.0.0']
|
||||
- ['reference/api/docker_remote_api.md', 'Reference', 'Docker Remote API']
|
||||
- ['reference/api/docker_remote_api_v1.19.md', 'Reference', 'Docker Remote API v1.19']
|
||||
- ['reference/api/docker_remote_api_v1.18.md', 'Reference', 'Docker Remote API v1.18']
|
||||
- ['reference/api/docker_remote_api_v1.17.md', 'Reference', 'Docker Remote API v1.17']
|
||||
- ['reference/api/docker_remote_api_v1.16.md', 'Reference', 'Docker Remote API v1.16']
|
||||
- ['reference/api/docker_remote_api_v1.16.md', '**HIDDEN**']
|
||||
- ['reference/api/docker_remote_api_v1.15.md', '**HIDDEN**']
|
||||
- ['reference/api/docker_remote_api_v1.14.md', '**HIDDEN**']
|
||||
- ['reference/api/docker_remote_api_v1.13.md', '**HIDDEN**']
|
||||
|
|
|
@ -30,13 +30,22 @@ page_keywords: API, Docker, rcli, REST, documentation
|
|||
Client applications need to take this into account to ensure
|
||||
they will not break when talking to newer Docker daemons.
|
||||
|
||||
The current version of the API is v1.18
|
||||
The current version of the API is v1.19
|
||||
|
||||
Calling `/info` is the same as calling
|
||||
`/v1.18/info`.
|
||||
`/v1.19/info`.
|
||||
|
||||
You can still call an old version of the API using
|
||||
`/v1.17/info`.
|
||||
`/v1.18/info`.
|
||||
|
||||
## v1.19
|
||||
|
||||
### Full Documentation
|
||||
|
||||
[*Docker Remote API v1.19*](/reference/api/docker_remote_api_v1.19/)
|
||||
|
||||
### What's new
|
||||
|
||||
|
||||
## v1.18
|
||||
|
||||
|
|
2065
docs/sources/reference/api/docker_remote_api_v1.19.md
Normal file
2065
docs/sources/reference/api/docker_remote_api_v1.19.md
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue