diff options
author | haircommander <pehunt@redhat.com> | 2018-06-11 16:46:16 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-14 10:26:21 +0000 |
commit | b868470238ee60032a50f6ed23db3c09b475842b (patch) | |
tree | 4fb678f9fbbae7b90cc7933c1ec8226b36ea7f87 /docs | |
parent | 65033b586fb353734d29dac1dfb9f342d5eeaa21 (diff) | |
download | podman-b868470238ee60032a50f6ed23db3c09b475842b.tar.gz podman-b868470238ee60032a50f6ed23db3c09b475842b.tar.bz2 podman-b868470238ee60032a50f6ed23db3c09b475842b.zip |
Added --sort flag to podman image
Signed-off-by: haircommander <pehunt@redhat.com>
Closes: #937
Approved by: rhatdan
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-images.1.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/podman-images.1.md b/docs/podman-images.1.md index 4c0073425..eb9712588 100644 --- a/docs/podman-images.1.md +++ b/docs/podman-images.1.md @@ -40,6 +40,9 @@ Do not truncate output. Lists only the image IDs. +**--sort** + +Sort by id, repository, size, tag or time (default: time) ## EXAMPLE @@ -120,6 +123,16 @@ REPOSITORY TAG IMAGE ID CREATED SIZE ] ``` +``` +# podman images --sort repository +REPOSITORY TAG IMAGE ID CREATED SIZE +<none> <none> 2460217d76fc About a minute ago 4.41MB +docker.io/library/alpine latest 3fd9065eaf02 5 months ago 4.41MB +localhost/myapp latest b2e0ad03474a About a minute ago 4.41MB +registry.access.redhat.com/rhel7 latest 7a840db7f020 2 weeks ago 211MB +registry.fedoraproject.org/fedora 27 801894bc0e43 6 weeks ago 246MB +``` + ## SEE ALSO podman(1) |