remove the docker images 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 docker images

docker system prune -a

Example 4: docker remove image

docker image rm [OPTIONS] IMAGE [IMAGE...]
#[OPTIONS]
--force , -f		Force removal of the image
--no-prune		Do not delete untagged parents

Example 5: how to delete image docker

docker image rm [OPTIONS] IMAGE_ID [IMAGE_ID...]
#[OPTIONS]
--force , -f		Force removal of the image
--no-prune		Do not delete untagged parents