Forrest logo
back to the docker tool

docker:tldr:d305c

docker: Remove one or more images given their names.
$ docker rmi ${image1 image2 ---}
try on your machine

The docker rmi command is used to remove one or more Docker images from the local machine.

In the given command, ${image1 image2 ---} is a placeholder for the names or IDs of the images you want to remove. The braces ({}) are used to group multiple values together. The --- is just a separator used to indicate that you can provide additional image names or IDs if needed.

To use the command, you need to replace ${image1 image2 ---} with the actual names or IDs of the images you want to remove. For example, if you want to remove two images with names myimage1 and myimage2, the command would be:

docker rmi myimage1 myimage2

You can also specify image IDs instead of names, using the format docker rmi <image_id>.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the docker tool