how to remove all docker images windows code example
Example 1: remove all docker images
# List all containers (only IDs)
docker ps -aq
# Stop all running containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove all images
docker rmi $(docker images -q)
Example 2: windows delete all docker images
$ docker system prune --all
Example 3: remove all docker images
$images = docker images -a -q
foreach ($image in $images) { docker image rm $image -f }