remove docker images by image id code example
Example 1: remove downloaded docker images
docker image rm [OPTIONS] IMAGE [IMAGE...]
Example 2: docker rmi multiple tags
docker images | grep 810001cb03af | awk '{print $1 ":" $2}' | xargs docker rmi