how to delete all docker images command 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