summaryrefslogtreecommitdiff
path: root/cmd/podman/cleanup.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-18 22:14:57 +0100
committerGitHub <noreply@github.com>2019-02-18 22:14:57 +0100
commit228d1cbcd372b086669e35c1237fc5064b24ea7d (patch)
treebf8b47a997c76db0121295314ab1740411afeedf /cmd/podman/cleanup.go
parentc9b13133cdd9f59a000d40fce357c33919ef7032 (diff)
parent64853710e87ba124561653cb5d62ca3a653b4170 (diff)
downloadpodman-228d1cbcd372b086669e35c1237fc5064b24ea7d.tar.gz
podman-228d1cbcd372b086669e35c1237fc5064b24ea7d.tar.bz2
podman-228d1cbcd372b086669e35c1237fc5064b24ea7d.zip
Merge pull request #2361 from TomSweeneyRedHat/dev/tsweeney/cobraex4
Add 4th chunk of Cobra Examples
Diffstat (limited to 'cmd/podman/cleanup.go')
-rw-r--r--cmd/podman/cleanup.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/cleanup.go b/cmd/podman/cleanup.go
index e465a30e6..89a4ba050 100644
--- a/cmd/podman/cleanup.go
+++ b/cmd/podman/cleanup.go
@@ -26,7 +26,9 @@ var (
cleanupCommand.GlobalFlags = MainGlobalOpts
return cleanupCmd(&cleanupCommand)
},
- Example: "CONTAINER-NAME [CONTAINER-NAME ...]",
+ Example: `podman container cleanup --latest
+ podman container cleanup ctrID1 ctrID2 ctrID3
+ podman container cleanup --all`,
}
)