diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-17 11:14:10 -0500 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-17 13:49:05 -0500 |
commit | b62c0e703d70439c677205fb423e81491e8d1cf9 (patch) | |
tree | c8a2cea744a1a770800ea85cf1c646c2b573ec4b /cmd/podman/rmi.go | |
parent | a99f4924d9d76f59e85bde09944d7c5e687ea8aa (diff) | |
download | podman-b62c0e703d70439c677205fb423e81491e8d1cf9.tar.gz podman-b62c0e703d70439c677205fb423e81491e8d1cf9.tar.bz2 podman-b62c0e703d70439c677205fb423e81491e8d1cf9.zip |
Add 3rd chunk of Cobra examples
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Adds the third chunk of Cobra examples to the cli help.
As were putting together a release tomorrow, tried to
hit the heavy commands with this PR.
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'cmd/podman/rmi.go')
-rw-r--r-- | cmd/podman/rmi.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/rmi.go b/cmd/podman/rmi.go index c5bd1e190..fb27772f5 100644 --- a/cmd/podman/rmi.go +++ b/cmd/podman/rmi.go @@ -23,7 +23,9 @@ var ( rmiCommand.GlobalFlags = MainGlobalOpts return rmiCmd(&rmiCommand) }, - Example: "IMAGE-NAME-OR-ID [...]", + Example: `podman rmi imageID + podman rmi --force alpine + podman rmi c4dfb1609ee2 93fd78260bd1 c0ed59d05ff7`, } ) |