docker kill image id code example
Example 1: delete all docker images
docker system prune -a
Example 2: 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 3: docker rmi multiple tags
docker images | grep 810001cb03af | awk '{print $1 ":" $2}' | xargs docker rmi