1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/podman-images.md
2023-03-11 17:52:08 -03:00

24 lines
508 B
Markdown

# 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*}}"`