diff options
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) } |