Luke Puplett
Luke Puplett

Reputation: 45135

How do I find Docker image by its long name

I very simple beginner question. I have the following line in my Dockerfile and I want to see what other versions (tags?) are available for it.

FROM mcr.microsoft.com/dotnet/aspnet:5.0-focal AS base

I can't seem to find it on Docker Hub by entering lumps of that name/address string above.

The URL mcr.microsoft.com redirects to a page which says "The discovery experience for MCR is provided through dockerhub."

When I hit the link it goes to a Docker page but the UX is not the same as the Docker Hub search, and when I do search for aspnet I get a lots of results because it's not filtered just on Microsoft Container Registry.

It's confusing. When I tick the Verified Publisher filter and I only see one image from Bitnami.

Whatever (obvious) attempts I make to search for this image, I fail. Please show me how I can locate the Docker Hub page for an image from its name/address/id.

Upvotes: 1

Views: 545

Answers (1)

Beppe C
Beppe C

Reputation: 13933

One possible way is to use Skopeo

skopeo list-tags  docker://mcr.microsoft.com/dotnet/aspnet

Upvotes: 1

Related Questions