-
Notifications
You must be signed in to change notification settings - Fork 73
Update Readme file in incorporate notes on ASP.NET container images o… #132
Conversation
README.md
Outdated
| FROM mcr.microsoft.com/dotnet/framework/aspnet:4.7.2-windowsservercore-ltsc2016 | ||
| … | ||
| ``` | ||
| 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. I encourage taking a look a [Steve Lasker’s blog post](https://azure.microsoft.com/en-us/blog/microsoft-syndicates-container-catalog/) taking about the value proposition we can offer our customers through MCR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't like README linking out to blog posts that have point in time content. I'd take the salient points from there and include it in the readme if need be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shirhatti could please review the new content?
|
Can you also open a PR against MCR? The README doesn't automatically syndicate |
README.md
Outdated
| ``` | ||
| 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. | ||
| If your existing Dockerfile begins by specifying microsoft/aspnet as the base layer as shown below- | ||
| ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ``` | |
| ```Dockerfile |
README.md
Outdated
| … | ||
| ``` | ||
| Our guidance is to move to adopting MCR as your base layer. You should change your Dockerfile to what’s shown below- | ||
| ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ``` | |
| ```Dockerfile |
Update Readme to incorporate notes of ASP.NET container images on Windows Server 2019.