command to delete all docker images code example

Example 1: docker delete all images

docker rmi -f $(docker images -a -q)

Example 2: 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 3: docker remove all image

docker system prune -a --volumes

Example 4: docker purge all

docker system prune [OPTIONS]