how to remove docker image by tag code example
Example 1: remove all images docker
docker rmi $(docker images -a -q)
Example 2: docker remove all containers and images
docker container rm $(docker container ls -aq)
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