summaryrefslogtreecommitdiff
path: root/docs/source/markdown/podman-rm.1.md
diff options
context:
space:
mode:
authorpatrycja-guzik <patrycja.k.guzik@gmail.com>2022-08-27 00:01:22 +0200
committerMatthew Heon <mheon@redhat.com>2022-09-06 14:48:05 -0400
commit7f393811ae3facba161f755c0446c894d1d2fc2a (patch)
tree19d31165464b168ec6507154053f378c9e1e21dd /docs/source/markdown/podman-rm.1.md
parente3e8397dbc2422301fc4d3bb2738306291a466ec (diff)
downloadpodman-7f393811ae3facba161f755c0446c894d1d2fc2a.tar.gz
podman-7f393811ae3facba161f755c0446c894d1d2fc2a.tar.bz2
podman-7f393811ae3facba161f755c0446c894d1d2fc2a.zip
Fix example sections to follow the same format
Signed-off-by: patrycja-guzik <patrycja.k.guzik@gmail.com>
Diffstat (limited to 'docs/source/markdown/podman-rm.1.md')
-rw-r--r--docs/source/markdown/podman-rm.1.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/source/markdown/podman-rm.1.md b/docs/source/markdown/podman-rm.1.md
index 1fac3aa34..b34878968 100644
--- a/docs/source/markdown/podman-rm.1.md
+++ b/docs/source/markdown/podman-rm.1.md
@@ -55,37 +55,37 @@ Remove anonymous volumes associated with the container. This does not include na
created with **podman volume create**, or the **--volume** option of **podman run** and **podman create**.
## EXAMPLE
-Remove a container by its name *mywebserver*
+Remove container with a given name
```
$ podman rm mywebserver
```
-Remove a *mywebserver* container and all of the containers that depend on it
+Remove container with a given name and all of the containers that depend on it
```
$ podman rm --depend mywebserver
```
-Remove several containers by name and container id.
+Remove multiple containers with given names or IDs
```
$ podman rm mywebserver myflaskserver 860a4b23
```
-Remove several containers reading their IDs from files.
+Remove multiple containers with IDs read from files
```
$ podman rm --cidfile ./cidfile-1 --cidfile /home/user/cidfile-2
```
-Forcibly remove a container by container ID.
+Forcibly remove container with a given ID
```
$ podman rm -f 860a4b23
```
-Remove all containers regardless of its run state.
+Remove all containers regardless of the run state
```
$ podman rm -f -a
```
-Forcibly remove the latest container created.
+Forcibly remove the last created container
```
$ podman rm -f --latest
```