EN
Docker - remove images by tag name
3
points
Quick solution:
# will print all images
docker images | grep "MY_TAG_HERE" | awk '{print $1 ":" $2}'
# will remove all images - test above command
docker images | grep "MY_TAG_HERE" | awk '{print $1 ":" $2}' | xargs docker rmi