.NET Core 2.1 container images will be deleted from Docker Hub #3693
Replies: 6 comments
-
OK, The day come. we have upgrade to dotnet 3.1 LTS. and waiting for next LTS .net. |
Beta Was this translation helpful? Give feedback.
-
Excellent. You'll be able to use .NET 6 (which is LTS) in production starting with RC1, which we'll release in the first half of next month. We encourage teams to do that to get the new value sooner. We're happy to help with your .NET 6 adoption. In fact, I have a customer call on that topic later today. |
Beta Was this translation helpful? Give feedback.
-
Hey guys, how are you going? How about SDK and Runtime from 2.2? Yesterday I tried to build an image using SDK 2.2 (mcr.microsoft.com/dotnet/sdk:2.2) but I got a not found error. 😿 Kind regards! 😸 |
Beta Was this translation helpful? Give feedback.
-
That's because .NET Core 2.2 is no longer supported. It has been out of support since Dec 2019. Note that .NET Core 2.2 was not an LTS release. It is recommended that you upgrade to the latest supported version: .NET 5.0. |
Beta Was this translation helpful? Give feedback.
-
Awesome @mthalman, thanks for the reply! Well, I guess I gotta update our apps to the LTS version! \o/ Have a nice one! 😸 |
Beta Was this translation helpful? Give feedback.
-
@joaoantoniomartinsfilho, If needed you can still pull the 2.2 images - mcr.microsoft.com/dotnet/core/sdk:2.2. There was a repo rename during the 5.0 release and only the in support releases were copied to the new repos. See #1939 for details. But as @mthalman mentioned, you should update to a supported version of .NET. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
.NET Core 2.1 container images will be deleted from Docker Hub
Starting on August 21st, .NET Core 2.1 Docker container images will no longer be available on Docker Hub, but exclusively on Microsoft Container Registry (MCR). This change was previously announced with #2848. If you are reliant on .NET Core 2.1 images on Docker Hub, you should switch to using MCR immediately. Please reach out at [email protected] if this change is a problem for you / your organization.
.NET Blog: https://devblogs.microsoft.com/dotnet/net-core-2-1-container-images-will-be-deleted-from-docker-hub/
Details
.NET images are available on MCR from the following repos:
mcr.microsoft.com/dotnet/runtime-deps
mcr.microsoft.com/dotnet/runtime
mcr.microsoft.com/dotnet/aspnet
mcr.microsoft.com/dotnet/sdk
You need to make the following transformations to pull .NET Core 2.1 images from MCR instead of Docker Hub.
For the SDK:
For the ASP.NET Core:
For .NET Runtime:
For .NET Runtime dependencies:
Beta Was this translation helpful? Give feedback.
All reactions