aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/pod_rm.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-15 00:07:34 +0100
committerGitHub <noreply@github.com>2019-02-15 00:07:34 +0100
commit81ace5caaca844eda4be48245590ea54bdd0cba3 (patch)
tree31313c4e0ef1730bf89014a1461aa5d6e0a71c65 /cmd/podman/pod_rm.go
parentae8cc41295c4ff6f6f82372221c66c250691e4f6 (diff)
parenta7a691809a3125cce691c7934a98a2511b9cb6db (diff)
downloadpodman-81ace5caaca844eda4be48245590ea54bdd0cba3.tar.gz
podman-81ace5caaca844eda4be48245590ea54bdd0cba3.tar.bz2
podman-81ace5caaca844eda4be48245590ea54bdd0cba3.zip
Merge pull request #2333 from TomSweeneyRedHat/dev/tsweeney/helpexamples
Add examples for Cobra
Diffstat (limited to 'cmd/podman/pod_rm.go')
-rw-r--r--cmd/podman/pod_rm.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/pod_rm.go b/cmd/podman/pod_rm.go
index 389f44a20..54cee2a50 100644
--- a/cmd/podman/pod_rm.go
+++ b/cmd/podman/pod_rm.go
@@ -26,7 +26,9 @@ If --force is specified, all containers will be stopped, then removed.
podRmCommand.GlobalFlags = MainGlobalOpts
return podRmCmd(&podRmCommand)
},
- Example: "[POD ...]",
+ Example: `podman pod rm mywebserverpod
+ podman pod rm -f 860a4b23
+ podman pod rm -f -a`,
}
)