Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 2da94c3

Browse files
authored
Update Readme file in incorporate notes on ASP.NET container images o… (#132)
* Update Readme file in incorporate notes on ASP.NET container images on MCR * Update typo correction * update readme content per review feedback * more updates based on review feedback
1 parent 763d4df commit 2da94c3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,29 @@ This image is officially supported on Docker version 1.12.2.
147147

148148
Please see [the Docker installation documentation](https://docs.docker.com/installation/) for details on how to upgrade your Docker daemon.
149149

150+
150151
# User Feedback
151152

153+
154+
## Notes on ASP.NET container images for Windows Server 2019
155+
156+
Now that Windows Server 2019 is generally available, we have published ASP.NET container images for Windows Server 2019. You can pull the new Windows Server Image via-
157+
```
158+
docker pull mcr.microsoft.com/dotnet/framework/aspnet:4.7.2-windowsservercore-ltsc2019
159+
```
160+
As you may have noticed in the `docker pull` command, the image is now being served from the Microsoft Container Registry (MCR). Starting with Windows Server 2019 and going forwards, all new tags will be published exclusively to MCR. All existing tags have been syndicated from DockerHub to MCR.
161+
If your existing Dockerfile begins by specifying microsoft/aspnet as the base layer as shown below-
162+
```Dockerfile
163+
FROM microsoft/aspnet:4.7.2-windowsservercore-ltsc2016
164+
165+
```
166+
Our guidance is to move to adopting MCR as your base layer. You should change your Dockerfile to what’s shown below-
167+
```Dockerfile
168+
FROM mcr.microsoft.com/dotnet/framework/aspnet:4.7.2-windowsservercore-ltsc2016
169+
170+
```
171+
As part of this transition, we are only changing the source from where you download your images to MCR. DockerHub continues to be the preferred medium for container image discovery. The Microsoft Container Registry does not have its own catalog experience and is meant to support existing catalogs such as Docker Hub, Red Hat Container Catalog, and Azure Marketplace. This syndication model, enabling multiple channels of discovery, with a single download source for Microsoft’s container images.
172+
152173
## Issues
153174

154175
If you have any problems with or questions about this image, please contact us through a [GitHub issue](https://github.com/microsoft/aspnet-docker/issues).

0 commit comments

Comments
 (0)