Reputation: 20182
I tagged a docker image a couple times using the instructions here. How can I view existing tags I created so far on my docker host?
Upvotes: 0
Views: 872
Reputation: 10130
This will list all your images, including tags:
docker images
If you're only interested in a particular image, use a name. ex:
docker images ubuntu
Upvotes: 2