Explain that these two images are the same image, but they have different names. You can use docker tag to add tags to this image or create a new image with a different name.
However, when you rmi the name, you only delete the name, not the image (unless it is the last name), and rmi the id directly to delete the image.
Explain that these two images are the same image, but they have different names. You can use docker tag to add tags to this image or create a new image with a different name.
However, when you rmi the name, you only delete the name, not the image (unless it is the last name), and rmi the id directly to delete the image.
Delete with REPOSITORY
docker rmi -f $(docker images -q mysql | sort -u)