diff options
author | Radostin Stoyanov <rstoyanov1@gmail.com> | 2019-11-02 10:12:38 +0000 |
---|---|---|
committer | Radostin Stoyanov <rstoyanov1@gmail.com> | 2019-11-04 00:55:52 +0000 |
commit | 5293446e0ff39187be4a3f07837e2a145e24c990 (patch) | |
tree | c0d74466e79fd460ff19acb1d991bf57f6b96990 /docs | |
parent | 82381072e166f635d9879346ac73c1140709f50f (diff) | |
download | podman-5293446e0ff39187be4a3f07837e2a145e24c990.tar.gz podman-5293446e0ff39187be4a3f07837e2a145e24c990.tar.bz2 podman-5293446e0ff39187be4a3f07837e2a145e24c990.zip |
docs: Update "podman container rm -v" description
In commit 52df1fa (Fix volume handling in podman) was implemented the
--volume option for podman remove. However, its behaviour changed after
83db80c (Only remove image volumes when removing containers).
This commit updates the description of this option to reflect the new
behaviour.
Signed-off-by: Radostin Stoyanov <rstoyanov1@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-rm.1.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-rm.1.md b/docs/source/markdown/podman-rm.1.md index 207d9d61d..c1663129c 100644 --- a/docs/source/markdown/podman-rm.1.md +++ b/docs/source/markdown/podman-rm.1.md @@ -42,7 +42,8 @@ The storage option conflicts with the **--all**, **--latest**, and **--volumes** **--volumes**, **-v** -Remove the volumes associated with the container. +Remove anonymous volumes associated with the container. This does not include named volumes +created with `podman volume create`, or the `--volume` option of `podman run` and `podman create`. ## EXAMPLE Remove a container by its name *mywebserver* |