docker-image-rm - Man Page

Remove one or more images

Synopsis

docker image rm [Options] IMAGE [IMAGE...]

Description

Removes (and un-tags) one or more images from the host node. If an image has multiple tags, using this command with the tag as a parameter only removes the tag. If the tag is the only one for the image, both the image and the tag are removed.

This does not remove images from a registry. You cannot remove an image of a running container unless you use the -f option. To see all images on a host use the docker image ls command.

Examples

Removing an image

Here is an example of removing an image:

docker image rm fedora/httpd

Options

-f, ā€‰--force[=false]

Force removal of the image

-h, ā€‰--help[=false]

help for rm

--no-prune[=false]

Do not delete untagged parents

See Also

docker-image(1)

Referenced By

docker-image(1).

May 2020 Docker Community