diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-01-26 07:16:16 -0500 |
---|---|---|
committer | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-01-26 07:16:16 -0500 |
commit | 3ff2ea329b97ac89b984e39a23af418894d6a41f (patch) | |
tree | 7383e50c659d2e5fac2219a048c31280acf8cdd7 /docs/source/markdown/podman-rmi.1.md | |
parent | d7e99b04b98b44ec3710ef2b47b316b55101835c (diff) | |
download | podman-3ff2ea329b97ac89b984e39a23af418894d6a41f.tar.gz podman-3ff2ea329b97ac89b984e39a23af418894d6a41f.tar.bz2 podman-3ff2ea329b97ac89b984e39a23af418894d6a41f.zip |
docs: clean up "man podman-rm", "man podman-rmi"
Standardize markdown for options and commands, and add leading
dollar signs to emphasize commands being run.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Diffstat (limited to 'docs/source/markdown/podman-rmi.1.md')
-rw-r--r-- | docs/source/markdown/podman-rmi.1.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/source/markdown/podman-rmi.1.md b/docs/source/markdown/podman-rmi.1.md index 3c46bc32c..f4d946617 100644 --- a/docs/source/markdown/podman-rmi.1.md +++ b/docs/source/markdown/podman-rmi.1.md @@ -24,21 +24,21 @@ This option will cause podman to remove all containers that are using the image Remove an image by its short ID ``` -podman rmi c0ed59d05ff7 +$ podman rmi c0ed59d05ff7 ``` Remove an image and its associated containers. ``` -podman rmi --force imageID +$ podman rmi --force imageID ``` Remove multiple images by their shortened IDs. ``` -podman rmi c4dfb1609ee2 93fd78260bd1 c0ed59d05ff7 +$ podman rmi c4dfb1609ee2 93fd78260bd1 c0ed59d05ff7 ``` Remove all images and containers. ``` -podman rmi -a -f +$ podman rmi -a -f ``` ## Exit Status **_0_** if all specified images removed |