Merge pull request #19252 from HackToday/fix-vol-resp-doc
Update response content for volume mounts
This commit is contained in:
commit
63525a6dc5
2 changed files with 10 additions and 3 deletions
|
@ -220,10 +220,13 @@ Create a container
|
|||
},
|
||||
"Mounts": [
|
||||
{
|
||||
"Name": "fac362...80535",
|
||||
"Source": "/data",
|
||||
"Destination": "/data",
|
||||
"Driver": "local",
|
||||
"Mode": "ro,Z",
|
||||
"RW": false
|
||||
"RW": false,
|
||||
"Propagation": ""
|
||||
}
|
||||
],
|
||||
"WorkingDir": "",
|
||||
|
@ -572,10 +575,13 @@ Return low-level information on the container `id`
|
|||
},
|
||||
"Mounts": [
|
||||
{
|
||||
"Name": "fac362...80535",
|
||||
"Source": "/data",
|
||||
"Destination": "/data",
|
||||
"Driver": "local",
|
||||
"Mode": "ro,Z",
|
||||
"RW": false
|
||||
"RW": false,
|
||||
"Propagation": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -73,7 +73,8 @@ volumes. The output should look something similar to the following:
|
|||
"Destination": "/webapp",
|
||||
"Driver": "local",
|
||||
"Mode": "",
|
||||
"RW": true
|
||||
"RW": true,
|
||||
"Propagation": ""
|
||||
}
|
||||
]
|
||||
...
|
||||
|
|
Loading…
Reference in a new issue