diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-11 20:58:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-11 20:58:57 +0100 |
commit | 54a5584d84d37632c1c8480d437a012625526a84 (patch) | |
tree | b830557a2607c9b005532906630fb537a163ed46 /cmd/podman/image.go | |
parent | b7a3685cbae421bfd882c7c592b1721071cde984 (diff) | |
parent | 13d2354bc6b43571061d6eccab560fe1f226339e (diff) | |
download | podman-54a5584d84d37632c1c8480d437a012625526a84.tar.gz podman-54a5584d84d37632c1c8480d437a012625526a84.tar.bz2 podman-54a5584d84d37632c1c8480d437a012625526a84.zip |
Merge pull request #2307 from baude/repruneremote
Separate remote and local commands
Diffstat (limited to 'cmd/podman/image.go')
-rw-r--r-- | cmd/podman/image.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/podman/image.go b/cmd/podman/image.go index ac7ff4944..e93c63267 100644 --- a/cmd/podman/image.go +++ b/cmd/podman/image.go @@ -20,10 +20,11 @@ var ( var imageSubCommands = []*cobra.Command{ _historyCommand, _imageExistsCommand, - _inspectCommand, _imagesCommand, + _importCommand, + _inspectCommand, _pruneImagesCommand, - _pushCommand, + _pullCommand, _rmiCommand, _tagCommand, } @@ -31,5 +32,4 @@ var imageSubCommands = []*cobra.Command{ func init() { imageCommand.AddCommand(imageSubCommands...) imageCommand.AddCommand(getImageSubCommands()...) - rootCmd.AddCommand(imageCommand.Command) } |