summaryrefslogtreecommitdiff
path: root/cmd/podman/images.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-12-23 11:37:26 -0800
committerGitHub <noreply@github.com>2018-12-23 11:37:26 -0800
commit8fe30505acc1c58ab05771f2095ed3fd038c6df4 (patch)
tree3ca5ccc95628815f68aca01819e2a21809e18a73 /cmd/podman/images.go
parenteb982193c5bb949ec75308e91d5698aebe4f9429 (diff)
parenta22f00d4c58fdaba479405b38bac1508ef889c7e (diff)
downloadpodman-8fe30505acc1c58ab05771f2095ed3fd038c6df4.tar.gz
podman-8fe30505acc1c58ab05771f2095ed3fd038c6df4.tar.bz2
podman-8fe30505acc1c58ab05771f2095ed3fd038c6df4.zip
Merge pull request #2044 from rhatdan/list
Allow alias for list, ls, ps to work
Diffstat (limited to 'cmd/podman/images.go')
-rw-r--r--cmd/podman/images.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/images.go b/cmd/podman/images.go
index a1aeb6042..522863b1b 100644
--- a/cmd/podman/images.go
+++ b/cmd/podman/images.go
@@ -131,7 +131,8 @@ var (
OnUsageError: usageErrorHandler,
}
lsImagesCommand = cli.Command{
- Name: "ls",
+ Name: "list",
+ Aliases: []string{"ls"},
Usage: "list images in local storage",
Description: imagesDescription,
Flags: imagesFlags,