2025-03-14 21:59:59 -06:00
|
|
|
# podman images
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
> Manage OCI/Docker container images.
|
2025-03-14 21:59:59 -06:00
|
|
|
> More information: <https://docs.podman.io/en/latest/markdown/podman-images.1.html>.
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
- List all container images:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
`podman images`
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
- List all container images including intermediates:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`podman images {{[-a|--all]}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- List the output in quiet mode (only numeric IDs):
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`podman images {{[-q|--quiet]}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
- List all images not used by any container:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`podman images {{[-f|--filter]}} dangling=true`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- List images that contain a substring in their name:
|
|
|
|
|
|
|
|
|
|
`podman images "{{*image|image*}}"`
|