1

I am looking for a netframework Docker image with .net 4.7.2 and netcoreapp2.2. I searched on the main docker website: DockerHub, .NET Framework By Microsoft without success. I also check the Microsoft website just in case.

Is there a way to see previous version of a Docker image? (Especially for the .NET Framework)

Something to allow me to fill this kind of table:


| docker image                         | framework | core  | aspcore |
|--------------------------------------|-----------|-------|---------|
| microsoft/dotnet-framework:4.8-sdk   | 4.8       | 3.0   | ?       |
| microsoft/dotnet-framework:4.7.2-sdk | 4.7.2     |  2.1? | ?       |
|                                      | 4.7.1     | ?     | ?       |
|                                      | 4.7       | ?     | ?       |
|                                      | 4.6.2     | ?     | ?       |
|                                      | 4.6.1     | ?     | ?       |
|                                      | 4.6       | ?     | ?       |
|                                      | 4.5.2     | ?     | ?       |
|                                      | 4.5.1     | ?     | ?       |
|                                      | 4.5.0     | ?     | ?       |
Pierre.Vriens
  • 7,225
  • 14
  • 39
  • 84
aloisdg
  • 113
  • 1
  • 6

1 Answers1

2

docker image inspect - will show available information on the container (docs)

docker image history [your OPTIONS] imagename - Shows history of the container (docs)

Wesley Rolnick
  • 2,772
  • 12
  • 26
sreeniwl
  • 32
  • 3