diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2018-12-12 14:29:40 -0500 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2018-12-17 11:08:54 -0500 |
commit | 92c7f4eb9e50d0b35aa048c5149cb95ce5c4e507 (patch) | |
tree | 139136aa182ffaf7f3a1e6e3d3799aad7ba3563f /cmd/podman/images.go | |
parent | a1902dc48b11573ac35fa69ebdfe09def4857efd (diff) | |
download | podman-92c7f4eb9e50d0b35aa048c5149cb95ce5c4e507.tar.gz podman-92c7f4eb9e50d0b35aa048c5149cb95ce5c4e507.tar.bz2 podman-92c7f4eb9e50d0b35aa048c5149cb95ce5c4e507.zip |
Show image only once with images -q
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'cmd/podman/images.go')
-rw-r--r-- | cmd/podman/images.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/podman/images.go b/cmd/podman/images.go index 3351123ed..a1aeb6042 100644 --- a/cmd/podman/images.go +++ b/cmd/podman/images.go @@ -280,7 +280,9 @@ func getImagesTemplateOutput(ctx context.Context, runtime *libpod.Runtime, image if !opts.noTrunc { imageID = shortID(img.ID()) } + // get all specified repo:tag pairs and print them separately + outer: for repo, tags := range image.ReposToMap(img.Names()) { for _, tag := range tags { size, err := img.Size(ctx) @@ -302,6 +304,10 @@ func getImagesTemplateOutput(ctx context.Context, runtime *libpod.Runtime, image Size: sizeStr, } imagesOutput = append(imagesOutput, params) + if opts.quiet { // Show only one image ID when quiet + break outer + } + } } } |