diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-21 12:06:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 12:06:46 +0000 |
commit | dd4dc4b002e79c28cd824c59d8f6537d347868cf (patch) | |
tree | 938e1da3637fb32ef81b8be782f85792951b5cdb /docs/source/markdown/podman-create.1.md | |
parent | 852943516606f32ccc2406f41bcf3df42d7c622c (diff) | |
parent | 44d7270a34a0c3578d00858440f2adb53b83ef5e (diff) | |
download | podman-dd4dc4b002e79c28cd824c59d8f6537d347868cf.tar.gz podman-dd4dc4b002e79c28cd824c59d8f6537d347868cf.tar.bz2 podman-dd4dc4b002e79c28cd824c59d8f6537d347868cf.zip |
Merge pull request #7702 from Luap99/fix#7701
Fix incorrect parsing of create/run --volumes-from
Diffstat (limited to 'docs/source/markdown/podman-create.1.md')
-rw-r--r-- | docs/source/markdown/podman-create.1.md | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/docs/source/markdown/podman-create.1.md b/docs/source/markdown/podman-create.1.md index 9049ffb9f..4a8b311f0 100644 --- a/docs/source/markdown/podman-create.1.md +++ b/docs/source/markdown/podman-create.1.md @@ -1070,11 +1070,11 @@ change propagation properties of source mount. Say `/` is source mount for **--volumes-from**[=*CONTAINER*[:*OPTIONS*]] -Mount volumes from the specified container(s). -*OPTIONS* is a comma delimited list with the following available elements: +Mount volumes from the specified container(s). Used to share volumes between +containers. The *options* is a comma delimited list with the following available elements: -* [rw|ro] -* z +* **rw**|**ro** +* **z** Mounts already mounted volumes from a source container onto another container. You must supply the source's container-id or container-name. @@ -1083,9 +1083,8 @@ the target container. You can share volumes even if the source container is not running. By default, Podman mounts the volumes in the same mode (read-write or -read-only) as it is mounted in the source container. Optionally, you -can change this by suffixing the container-id with either the `ro` or -`rw` keyword. +read-only) as it is mounted in the source container. +You can change this by adding a `ro` or `rw` _option_. Labeling systems like SELinux require that proper labels are placed on volume content mounted into a container. Without a label, the security system might |