podman-*: add page (#8785)

This commit is contained in:
Brock R
2023-03-11 13:52:08 -07:00
committed by GitHub
parent ad4af3a8c6
commit 8d7bd99fc7
5 changed files with 137 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# podman images
> Manage Podman images.
> More information: <https://docs.podman.io/en/latest/markdown/podman-images.1.html>.
- List all Podman images:
`podman images`
- List all Podman images including intermediates:
`podman images --all`
- List the output in quiet mode (only numeric IDs):
`podman images --quiet`
- List all Podman images not used by any container:
`podman images --filter dangling=true`
- List images that contain a substring in their name:
`podman images "{{*image|image*}}"`