# Main cmd
podman rmi YOUR_IMAGE
#--force: Remove an image and its associated containers.
# Remove multiple images by their shortened IDs.
podman rmi c4dfb1609ee2 93fd78260bd1 c0ed59d05ff7
# WHATCH OUT FOR THIS ONE cause it removes all images and containers.
podman rmi -a -f # FOR ALL IMAGES AND CONTAINERS
#Remove an absent image with and without the --ignore flag.
podman rmi --ignore nothing
# EXIT STATUS
- 0 All specified images removed
- 1 One of the specified images did not exist, and no other failures
- 2 One of the specified images has child images or is being used by a container
- 125 The command fails for any other reason