From db094f6e15d3e63772d4346b0176cb6fc682b2fc Mon Sep 17 00:00:00 2001 From: umohnani8 Date: Thu, 14 Jun 2018 14:53:59 -0400 Subject: Add --all,-a flag to podman images podman images will not show intermediate images by default. To view all images, including intermediate images created during a build, use the --all flag. Signed-off-by: umohnani8 Closes: #947 Approved by: rhatdan --- docs/podman-images.1.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/podman-images.1.md b/docs/podman-images.1.md index eb9712588..a97785de7 100644 --- a/docs/podman-images.1.md +++ b/docs/podman-images.1.md @@ -13,7 +13,7 @@ Displays locally stored images, their names, and their IDs. **--all, -a** -Show all images (by default filter out the intermediate image layers). The default is false. (This is a NOOP until podman build supports caching.) +Show all images (by default filter out the intermediate image layers). The default is false. **--digests** @@ -133,6 +133,20 @@ registry.access.redhat.com/rhel7 latest 7a840db7f020 2 weeks ago registry.fedoraproject.org/fedora 27 801894bc0e43 6 weeks ago 246MB ``` +``` +# podman images +REPOSITORY TAG IMAGE ID CREATED SIZE +localhost/test latest 18f0c080cd72 4 seconds ago 4.42MB +docker.io/library/alpine latest 3fd9065eaf02 5 months ago 4.41MB +# podman images -a +REPOSITORY TAG IMAGE ID CREATED SIZE +localhost/test latest 18f0c080cd72 6 seconds ago 4.42MB + 270e70dc54c0 7 seconds ago 4.42MB + 4ed6fbe43414 8 seconds ago 4.41MB + 6b0df8e71508 8 seconds ago 4.41MB +docker.io/library/alpine latest 3fd9065eaf02 5 months ago 4.41MB +``` + ## SEE ALSO podman(1) -- cgit v1.2.3-54-g00ecf