Sign inSign up

marytuba/nginx-windows

By marytuba

Updated over 7 years ago

nginx-1.15.12 images based on windowsservercore

Image
0

192

marytuba/nginx-windows repository overview

nginx-windows

Install nginx 1.15.12 on windowsservercore

Supported tags

・latest (Ver 1.15.12 )
・1.15.12 (Ver 1.15.12)

Dockerfile

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 )

Reference

https://github.com/MicrosoftDocs/Virtualization-Documentation/tree/master/windows-container-samples/nginx

Tag summary

Content type

Image

Digest

Size

5.3 GB

Last updated

over 7 years ago

docker pull marytuba/nginx-windows