summaryrefslogtreecommitdiff
path: root/docs/podman-pod-rm.1.md
diff options
context:
space:
mode:
authorhaircommander <pehunt@redhat.com>2018-07-09 17:48:20 -0400
committerhaircommander <pehunt@redhat.com>2018-07-13 09:17:33 -0400
commita04a8d1dd4d375ebe5084bac760dc82f88cfc77f (patch)
tree4b02c7e49ec737c6e9ffd4412e5212b856df518c /docs/podman-pod-rm.1.md
parent1aad3fd96b61705243e8f6ae35f65946916aa8a5 (diff)
downloadpodman-a04a8d1dd4d375ebe5084bac760dc82f88cfc77f.tar.gz
podman-a04a8d1dd4d375ebe5084bac760dc82f88cfc77f.tar.bz2
podman-a04a8d1dd4d375ebe5084bac760dc82f88cfc77f.zip
Added full podman pod ps, with tests and man page
Signed-off-by: haircommander <pehunt@redhat.com>
Diffstat (limited to 'docs/podman-pod-rm.1.md')
-rw-r--r--docs/podman-pod-rm.1.md19
1 files changed, 11 insertions, 8 deletions
diff --git a/docs/podman-pod-rm.1.md b/docs/podman-pod-rm.1.md
index 725702714..3b571ee9a 100644
--- a/docs/podman-pod-rm.1.md
+++ b/docs/podman-pod-rm.1.md
@@ -4,20 +4,24 @@
podman\-pod\-rm - Remove one or more pods
## SYNOPSIS
-**podman rm** [*options*] *container*
+**podman pod rm** [*options*] *pod*
## DESCRIPTION
-**podman pod rm** will remove one or more pods from the host. The pod name or ID can be used. The -f option stops all containers then removes them before removing the pod. Without the -f option, a pod cannot be removed if it has attached containers.
+**podman pod rm** will remove one or more pods from the host. The pod name or ID can be used. The \-f option stops all containers and then removes them before removing the pod. Without the \-f option, a pod cannot be removed if it has associated containers.
## OPTIONS
-**--force, f**
+**--all, a**
-Stop running containers and delete all stopped containers before removal of pod.
+Remove all pods. Can be used in conjunction with \-f as well.
-**--all, a**
+**--latest, -l**
-Remove all pods. Can be used in conjunction with -f and -r as well.
+Instead of providing the pod name or ID, use the last created pod.
+
+**--force, f**
+
+Stop running containers and delete all stopped containers before removal of pod.
## EXAMPLE
@@ -35,5 +39,4 @@ podman pod rm -fa
podman-pod(1)
## HISTORY
-August 2017, Originally compiled by Ryan Cole <rycole@redhat.com>
-July 2018, Adapted from podman rm man page by Peter Hunt <pehunt@redhat.com>
+July 2018, Originally compiled by Peter Hunt <pehunt@redhat.com>