nginx-1.15.12 images based on windowsservercore
192
Install nginx 1.15.12 on windowsservercore
・latest (Ver 1.15.12 )
・1.15.12 (Ver 1.15.12)
FROM microsoft/windowsservercore
RUN powershell -Command \
$ErrorActionPreference = 'Stop'; \
Invoke-WebRequest -Method Get -Uri http://nginx.org/download/nginx-1.15.12.zip -OutFile c:\nginx-1.15.12.zip ; \
Expand-Archive -Path c:\nginx-1.15.12.zip -DestinationPath c:\ ; \
Remove-Item c:\nginx-1.15.12.zip -Force
WORKDIR /nginx-1.15.12
CMD ["/nginx-1.15.12/nginx.exe"]
nginx ( https://nginx.org/en/download.html )
windowsservercore ( https://hub.docker.com/_/microsoft-windows-servercore )
Content type
Image
Digest
Size
5.3 GB
Last updated
over 7 years ago
docker pull marytuba/nginx-windows