summaryrefslogtreecommitdiff
path: root/cmd/podmanV2/images/rmi.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-03-26 18:11:38 +0100
committerGitHub <noreply@github.com>2020-03-26 18:11:38 +0100
commit4f38509b6c8366e1093968833e2342b5b65311c5 (patch)
tree299b90de83112d133e56c85ee4c9d002aa29f056 /cmd/podmanV2/images/rmi.go
parent8cccac54979b804d1086ff42654de07dba802a2e (diff)
parentf38a26bfa0621e06ad8401ded3e10d7ea834819e (diff)
downloadpodman-4f38509b6c8366e1093968833e2342b5b65311c5.tar.gz
podman-4f38509b6c8366e1093968833e2342b5b65311c5.tar.bz2
podman-4f38509b6c8366e1093968833e2342b5b65311c5.zip
Merge pull request #5615 from jwhonce/wip/images
V2 podman image rm | podman rmi [IMAGE]
Diffstat (limited to 'cmd/podmanV2/images/rmi.go')
-rw-r--r--cmd/podmanV2/images/rmi.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/cmd/podmanV2/images/rmi.go b/cmd/podmanV2/images/rmi.go
new file mode 100644
index 000000000..7f9297bc9
--- /dev/null
+++ b/cmd/podmanV2/images/rmi.go
@@ -0,0 +1,30 @@
+package images
+
+import (
+ "strings"
+
+ "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/pkg/domain/entities"
+ "github.com/spf13/cobra"
+)
+
+var (
+ rmiCmd = &cobra.Command{
+ Use: strings.Replace(rmCmd.Use, "rm ", "rmi ", 1),
+ Args: rmCmd.Args,
+ Short: rmCmd.Short,
+ Long: rmCmd.Long,
+ PreRunE: rmCmd.PreRunE,
+ RunE: rmCmd.RunE,
+ Example: strings.Replace(rmCmd.Example, "podman image rm", "podman rmi", -1),
+ }
+)
+
+func init() {
+ registry.Commands = append(registry.Commands, registry.CliCommand{
+ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
+ Command: rmiCmd,
+ })
+ rmiCmd.SetHelpTemplate(registry.HelpTemplate())
+ rmiCmd.SetUsageTemplate(registry.UsageTemplate())
+}