Docker rmi
Jump to navigation
Jump to search
Internal
Overview
Remove one or more images from the local image repository.
docker rmi <image-id>
Delete All Images from Local Registry
Dangerous, do it only if you know what you're doing:
docker rmi --force $(docker images --format "{{.ID}}")
Remove Dangling Images
Also see docker images.