Merge pull request #164 from microsoft/user/mbrown555/1909
changes for IIS 1909 images in preperation for the release next Tuesday
This commit is contained in:
Коммит
9c9c2a3a1b
|
@ -1,6 +1,12 @@
|
|||
![IIS Docker Image](https://avatars2.githubusercontent.com/u/6154722?v=3&s=200)
|
||||
# IIS Docker Image
|
||||
|
||||
# Supported Windows Server, version 1909 amd64 tags
|
||||
|
||||
`docker pull mcr.microsoft.com/windows/servercore/iis:windowsservercore-1909`
|
||||
|
||||
[`windowsservercore-1909, latest` (*windowsserver/Dockerfile*)](https://github.com/Microsoft/iis-docker/blob/master/windowsservercore-1909/Dockerfile)
|
||||
|
||||
# Supported Windows Server, version 1903 amd64 tags
|
||||
|
||||
`docker pull mcr.microsoft.com/windows/servercore/iis:windowsservercore-1903`
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
# escape=`
|
||||
FROM mcr.microsoft.com/windows/servercore:1909
|
||||
|
||||
RUN powershell -Command `
|
||||
Add-WindowsFeature Web-Server; `
|
||||
Invoke-WebRequest -UseBasicParsing -Uri "https://dotnetbinaries.blob.core.windows.net/servicemonitor/2.0.1.6/ServiceMonitor.exe" -OutFile "C:\ServiceMonitor.exe"
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
ENTRYPOINT ["C:\\ServiceMonitor.exe", "w3svc"]
|
Загрузка…
Ссылка в новой задаче