1
0
mirror of https://github.com/docker/cli.git synced 2025-08-01 04:26:55 +03:00

Merge pull request #1629 from thaJeztah/update_rmi_docs

Improve `docker image rm` reference docs
This commit is contained in:
Silvin Lubecki
2019-03-18 10:39:45 +01:00
committed by GitHub

View File

@ -26,6 +26,17 @@ Options:
--no-prune Do not delete untagged parents
```
## 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`](images.md) command.
## Examples
You can remove an image using its short or long ID, its tag, or its digest. If