Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot find latest dotnet core images on docker (2.2.7)

I am using this docker image now:

microsoft/dotnet:2.2.2-aspnetcore-runtime-alpine

I want to upgrade to 2.2.7 but can't manage to find correct tag on docker:

This url https://registry.hub.docker.com/v1/repositories/microsoft/dotnet/tags seems to only have 2.2.2 as the latest version.

It seems that Microsoft has moved to their own docker repository (mcr.microsoft.com/dotnet/core/runtime:2.2) while maintaining documentation on docker hub? I am really confused with what is going on in there.

So I really want to find a corresponding image to my original but version 2.2.7 for both aspnet or ordinary runtime (without aspnet)

like image 464
Ilya Chernomordik Avatar asked Sep 17 '19 13:09

Ilya Chernomordik


1 Answers

Have found out with some help from Panagiotis:

Microsoft has moved all their images to own repository, see more information here. They do reference these images from a documentation on docker hub even though the images are not published there.

Docker images that can be used for dotnet core:

mcr.microsoft.com/dotnet/core/runtime-deps:2.2.3 - use for deploying self-contained deployment apps

mcr.microsoft.com/dotnet/core/runtime:2.2.3 - use for deploying .NET Core console apps

mcr.microsoft.com/dotnet/core/aspnet:2.2.3 - use for deploying ASP.NET Core apps

mcr.microsoft.com/dotnet/core/sdk:2.2.105 - use for building .NET Core (or ASP.NET Core apps)

like image 144
Ilya Chernomordik Avatar answered Nov 05 '22 04:11

Ilya Chernomordik