diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-06 04:44:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-06 04:44:52 -0400 |
commit | 8b6f911e4818d02bca65ff263dcb61bfe082a470 (patch) | |
tree | c2dbd20ea4d6a5ce1e4108b8c9c1f9ae0194ed4f /docs/source/markdown/podman-pod-rm.1.md | |
parent | 370821f3e3537f8ae5ff2885a3a30de196180b06 (diff) | |
parent | e73547a6352042d27c6dc34574d08ae51f84ee65 (diff) | |
download | podman-8b6f911e4818d02bca65ff263dcb61bfe082a470.tar.gz podman-8b6f911e4818d02bca65ff263dcb61bfe082a470.tar.bz2 podman-8b6f911e4818d02bca65ff263dcb61bfe082a470.zip |
Merge pull request #13786 from patrycja-guzik/docu3
[CI:DOCS] Unify examples section across several man pages: pod rm/start/unpause
Diffstat (limited to 'docs/source/markdown/podman-pod-rm.1.md')
-rw-r--r-- | docs/source/markdown/podman-pod-rm.1.md | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-pod-rm.1.md b/docs/source/markdown/podman-pod-rm.1.md index 75a44c6d4..befab6791 100644 --- a/docs/source/markdown/podman-pod-rm.1.md +++ b/docs/source/markdown/podman-pod-rm.1.md @@ -39,17 +39,31 @@ Seconds to wait before forcibly stopping running containers within the pod. The ## EXAMPLE +Remove pod with a given name +``` podman pod rm mywebserverpod +``` +Remove multiple pods with given names and/or IDs +``` podman pod rm mywebserverpod myflaskserverpod 860a4b23 +``` +Forcefully remove pod with a given ID +``` podman pod rm -f 860a4b23 +``` +Forcefully remove all pods +``` podman pod rm -f -a - podman pod rm -fa +``` +Remove pod using ID specified in a given file +``` podman pod rm --pod-id-file /path/to/id/file +``` ## Exit Status **0** All specified pods removed |