Removing Docker Images
Remove one or more specific images
Use the
docker images
command with the -a
flag to locate the ID of the images you want to remove. This will show you every image, including intermediate image layers. When you've located the images you want to delete, you can pass their ID or tag to docker rmi
:
List:
- docker images -a
Remove:
- docker rmi Image Image
Note: Only a member of this blog may post a comment.