snippetbashTip
podman rmi — Remove OCI/Docker images. More information: <https://docs.podman.io/en/latest/markdown/podman-rmi.1.
Viewed 0 times
commandimagesremovedockerclipodman rmiocimore
Problem
How to use the
podman rmi command: Remove OCI/Docker images. More information: <https://docs.podman.io/en/latest/markdown/podman-rmi.1.html>.Solution
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]}}Code Snippets
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]}}Context
tldr-pages: common/podman rmi
Revisions (0)
No revisions yet.