1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:42:07 +02:00
tldr/pages/common/podman-image.md
2023-11-23 14:55:03 +01:00

21 lines
464 B
Markdown

# podman image
> Manage Docker images.
> See also: `podman build`, `podman import`, and `podman pull`.
> More information: <https://docs.podman.io/en/latest/markdown/podman-image.1.html>.
- List local Docker images:
`podman image ls`
- Delete unused local Docker images:
`podman image prune`
- Delete all unused images (not just those without a tag):
`podman image prune --all`
- Show the history of a local Docker image:
`podman image history {{image}}`