diff options
author | umohnani8 <umohnani@redhat.com> | 2018-06-14 14:53:59 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-18 14:41:51 +0000 |
commit | db094f6e15d3e63772d4346b0176cb6fc682b2fc (patch) | |
tree | a48a5eff164c91be48919e436eb3a3f9c58b96b8 /docs | |
parent | 4d3db1b4a9ec1a1a2aa74e3da0102b6017f8a328 (diff) | |
download | podman-db094f6e15d3e63772d4346b0176cb6fc682b2fc.tar.gz podman-db094f6e15d3e63772d4346b0176cb6fc682b2fc.tar.bz2 podman-db094f6e15d3e63772d4346b0176cb6fc682b2fc.zip |
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 <umohnani@redhat.com>
Closes: #947
Approved by: rhatdan
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-images.1.md | 16 |
1 files changed, 15 insertions, 1 deletions
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 +<none> <none> 270e70dc54c0 7 seconds ago 4.42MB +<none> <none> 4ed6fbe43414 8 seconds ago 4.41MB +<none> <none> 6b0df8e71508 8 seconds ago 4.41MB +docker.io/library/alpine latest 3fd9065eaf02 5 months ago 4.41MB +``` + ## SEE ALSO podman(1) |