mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Move HostConfig.Mounts to correct API version
This was added in fc7b904dce
,
but some parts of the documentation ended up in the
wrong API version, and was overlooked during
review :)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
94bc2b1bc0
commit
cd73ceffd8
2 changed files with 6 additions and 6 deletions
|
@ -334,8 +334,7 @@ Create a container
|
|||
"StorageOpt": {},
|
||||
"CgroupParent": "",
|
||||
"VolumeDriver": "",
|
||||
"ShmSize": 67108864,
|
||||
"Mounts": []
|
||||
"ShmSize": 67108864
|
||||
},
|
||||
"NetworkingConfig": {
|
||||
"EndpointsConfig": {
|
||||
|
@ -611,8 +610,7 @@ Return low-level information on the container `id`
|
|||
"VolumesFrom": null,
|
||||
"Ulimits": [{}],
|
||||
"VolumeDriver": "",
|
||||
"ShmSize": 67108864,
|
||||
"Mounts": []
|
||||
"ShmSize": 67108864
|
||||
},
|
||||
"HostnamePath": "/var/lib/docker/containers/ba033ac4401106a3b513bc9d639eee123ad78ca3616b921167cd74b20e25ed39/hostname",
|
||||
"HostsPath": "/var/lib/docker/containers/ba033ac4401106a3b513bc9d639eee123ad78ca3616b921167cd74b20e25ed39/hosts",
|
||||
|
|
|
@ -334,7 +334,8 @@ Create a container
|
|||
"StorageOpt": {},
|
||||
"CgroupParent": "",
|
||||
"VolumeDriver": "",
|
||||
"ShmSize": 67108864
|
||||
"ShmSize": 67108864,
|
||||
"Mounts": []
|
||||
},
|
||||
"NetworkingConfig": {
|
||||
"EndpointsConfig": {
|
||||
|
@ -633,7 +634,8 @@ Return low-level information on the container `id`
|
|||
"VolumesFrom": null,
|
||||
"Ulimits": [{}],
|
||||
"VolumeDriver": "",
|
||||
"ShmSize": 67108864
|
||||
"ShmSize": 67108864,
|
||||
"Mounts": []
|
||||
},
|
||||
"HostnamePath": "/var/lib/docker/containers/ba033ac4401106a3b513bc9d639eee123ad78ca3616b921167cd74b20e25ed39/hostname",
|
||||
"HostsPath": "/var/lib/docker/containers/ba033ac4401106a3b513bc9d639eee123ad78ca3616b921167cd74b20e25ed39/hosts",
|
||||
|
|
Loading…
Add table
Reference in a new issue