PositiveGuy
PositiveGuy

Reputation: 20182

How to list Docker Tags

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

Answers (1)

code_monk
code_monk

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

Related Questions