diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-09-12 10:04:29 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-09-12 10:04:29 +0200 |
commit | 050ae6181752cfa55b1b2f7d70d8aeb8f03e5d24 (patch) | |
tree | 69aa4ca43e79c9f02243360ccc2621d77be7410a | |
parent | 1635fe8620fa454647cf7db2af9ed0c9b52eacfb (diff) | |
download | podman-050ae6181752cfa55b1b2f7d70d8aeb8f03e5d24.tar.gz podman-050ae6181752cfa55b1b2f7d70d8aeb8f03e5d24.tar.bz2 podman-050ae6181752cfa55b1b2f7d70d8aeb8f03e5d24.zip |
[CI:DOCS] --volume: consistent wording
Make sure that the wording of mounting something _from_ the source
_into_ the destination is consistent.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
-rw-r--r-- | docs/source/markdown/options/volume.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/options/volume.md b/docs/source/markdown/options/volume.md index 6d0d9a4b3..9c4a7f981 100644 --- a/docs/source/markdown/options/volume.md +++ b/docs/source/markdown/options/volume.md @@ -1,7 +1,7 @@ #### **--volume**, **-v**=*[[SOURCE-VOLUME|HOST-DIR:]CONTAINER-DIR[:OPTIONS]]* Create a bind mount. If `-v /HOST-DIR:/CONTAINER-DIR` is specified, Podman -bind mounts `/HOST-DIR` in the host to `/CONTAINER-DIR` in the Podman +bind mounts `/HOST-DIR` from the host into `/CONTAINER-DIR` in the Podman container. Similarly, `-v SOURCE-VOLUME:/CONTAINER-DIR` will mount the named volume from the host into the container. If no such named volume exists, Podman will create one. (Note when using the remote client, including Mac and Windows (excluding WSL2) machines, the volumes will be mounted from the remote server, not necessarily the client machine.) |