Files
cheatsheet-tldr/tldr/podman-rmi
2025-12-11 00:21:58 +00:00

26 lines
512 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# podman rmi
> Remove OCI/Docker images.
> More information: <https://docs.podman.io/en/latest/markdown/podman-rmi.1.html>.
- Remove one or more images given their names:
`podman rmi {{image:tag image2:tag ...}}`
- Force remove an image:
`podman rmi {{[-f|--force]}} {{image}}`
- Remove an image without deleting untagged parents:
`podman rmi --no-prune {{image}}`
- Display help:
`podman rmi {{[-h|--help]}}`