Missing Docker Images (version 2.2) #992
-
While running an old pipeline, I noticed that the docker images were moved to the Microsoft Container Registry. However, the MCR seems to be missing certain images. For version 2.1 it works without issues: Version 2.2 is missing: Error messages: I'm aware that these versions are old and have reached end of life but since version 2.1 is still available, I was curious about why 2.2 was removed. Is there some way to find the 2.2 images? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This repo is specific to .NET Framework. Since you're asking about .NET Core, it's more relevant in the https://github.com/dotnet/dotnet-docker repo. However, I can still answer this here. Back when .NET Core 2.1 and 2.2 were released the Docker repository names being used were So the short answer is that you can find 2.2 tags at |
Beta Was this translation helpful? Give feedback.
This repo is specific to .NET Framework. Since you're asking about .NET Core, it's more relevant in the https://github.com/dotnet/dotnet-docker repo. However, I can still answer this here.
Back when .NET Core 2.1 and 2.2 were released the Docker repository names being used were
dotnet/core/sdk
anddotnet/core/aspnet
. As part of the release of .NET 5, there was a migration to different repository names:dotnet/sdk
anddotnet/aspnet
. That migration occurred after .NET Core 2.2 was EOL, so 2.2 tags were not included in that migration. But 2.1 was still in support so those tags were included in both locations to avoid a breaking change.So the short answer is that you can find 2.2 tags at
mcr…