mirror of https://github.com/docker/docs.git
Merge pull request #18227 from thaJeztah/fix-api-changes
docs: move API changes to the correct API version
This commit is contained in:
commit
9cbfa7b00b
|
@ -95,6 +95,8 @@ This section lists each version from latest to oldest. Each listing includes a
|
||||||
[Docker Remote API v1.22](docker_remote_api_v1.22.md) documentation
|
[Docker Remote API v1.22](docker_remote_api_v1.22.md) documentation
|
||||||
|
|
||||||
* `GET /containers/json` supports filter `isolation` on Windows.
|
* `GET /containers/json` supports filter `isolation` on Windows.
|
||||||
|
* `GET /info` Now returns `Architecture` and `OSType` fields, providing information
|
||||||
|
about the host architecture and operating system type that the daemon runs on.
|
||||||
* `GET /networks/(name)` now returns a `Name` field for each container attached to the network.
|
* `GET /networks/(name)` now returns a `Name` field for each container attached to the network.
|
||||||
|
|
||||||
### v1.21 API changes
|
### v1.21 API changes
|
||||||
|
|
|
@ -1903,7 +1903,6 @@ Display system-wide information
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
|
|
||||||
{
|
{
|
||||||
"Architecture": "x86_64",
|
|
||||||
"Containers": 11,
|
"Containers": 11,
|
||||||
"CpuCfsPeriod": true,
|
"CpuCfsPeriod": true,
|
||||||
"CpuCfsQuota": true,
|
"CpuCfsQuota": true,
|
||||||
|
@ -1935,7 +1934,6 @@ Display system-wide information
|
||||||
"Name": "prod-server-42",
|
"Name": "prod-server-42",
|
||||||
"NoProxy": "9.81.1.160",
|
"NoProxy": "9.81.1.160",
|
||||||
"OomKillDisable": true,
|
"OomKillDisable": true,
|
||||||
"OSType": "linux",
|
|
||||||
"OperatingSystem": "Boot2Docker",
|
"OperatingSystem": "Boot2Docker",
|
||||||
"RegistryConfig": {
|
"RegistryConfig": {
|
||||||
"IndexConfigs": {
|
"IndexConfigs": {
|
||||||
|
|
|
@ -1907,6 +1907,7 @@ Display system-wide information
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
|
|
||||||
{
|
{
|
||||||
|
"Architecture": "x86_64",
|
||||||
"Containers": 11,
|
"Containers": 11,
|
||||||
"CpuCfsPeriod": true,
|
"CpuCfsPeriod": true,
|
||||||
"CpuCfsQuota": true,
|
"CpuCfsQuota": true,
|
||||||
|
@ -1948,6 +1949,7 @@ Display system-wide information
|
||||||
"Name": "prod-server-42",
|
"Name": "prod-server-42",
|
||||||
"NoProxy": "9.81.1.160",
|
"NoProxy": "9.81.1.160",
|
||||||
"OomKillDisable": true,
|
"OomKillDisable": true,
|
||||||
|
"OSType": "linux",
|
||||||
"OperatingSystem": "Boot2Docker",
|
"OperatingSystem": "Boot2Docker",
|
||||||
"RegistryConfig": {
|
"RegistryConfig": {
|
||||||
"IndexConfigs": {
|
"IndexConfigs": {
|
||||||
|
|
Loading…
Reference in New Issue