Skip to content

Commit

Permalink
Update to 10.0.14393.2007
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanScherer committed Jan 6, 2018
1 parent 935e86c commit 1bc69ad
Show file tree
Hide file tree
Showing 45 changed files with 55 additions and 53 deletions.
2 changes: 1 addition & 1 deletion CVE-2017-0290/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

RUN powershell -command wget -useb -outfile testcase.js https://bugs.chromium.org/p/project-zero/issues/attachment?aid=283405

Expand Down
2 changes: 1 addition & 1 deletion caddy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# escape=`
FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007
ENV CADDY_VERSION 0.10.10
RUN powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; `
Invoke-WebRequest $('https://github.com/mholt/caddy/releases/download/v{0}/caddy_v{0}_windows_amd64.zip' -f $env:CADDY_VERSION) -OutFile 'caddy.zip' -UseBasicParsing ; `
Expand Down
3 changes: 2 additions & 1 deletion chocolatey/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ FROM microsoft/windowsservercore:10.0.14393.1944
ENV chocolateyUseWindowsCompression false

RUN powershell -Command \
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'));
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')); \
choco feature disable --name showDownloadProgress
4 changes: 2 additions & 2 deletions consul/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# escape=`
FROM microsoft/nanoserver:10.0.14393.1770 as download
FROM microsoft/nanoserver:10.0.14393.2007 as download
ENV CONSUL_VERSION 1.0.0

RUN powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; `
Expand All @@ -9,7 +9,7 @@ RUN powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = '
mkdir C:\download\consul\data ; `
mkdir C:\download\consul\config

FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007
COPY --from=download /download /

# Expose the consul data directory as a volume since there's mutable state in there.
Expand Down
2 changes: 1 addition & 1 deletion diskspd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion diskspd/Dockerfile.nano
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
4 changes: 2 additions & 2 deletions docker-cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/nanoserver:10.0.14393.1770 as download
FROM microsoft/nanoserver:10.0.14393.2007 as download

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand All @@ -11,6 +11,6 @@ RUN Invoke-WebRequest $('https://download.docker.com/win/static/edge/x86_64/dock
Remove-Item -Path docker.zip ; \
Remove-Item -Path docker\dockerd.exe
FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007
COPY --from=download docker/docker.exe /
CMD [ "docker.exe" ]
2 changes: 1 addition & 1 deletion dockertls/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion dsc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007
COPY test.ps1 test.ps1
RUN powershell .\test.ps1
2 changes: 1 addition & 1 deletion getaddrinfo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# regression test for https://github.com/docker/docker/issues/15889

FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

RUN powershell -Command Sleep 2 ; wget -Uri https://github.com/StefanScherer/win-getaddrinfo/releases/download/1.0.8/getaddrinfo.exe -OutFile C:\Windows\system32\getaddrinfo.exe -UseBasicParsing

Expand Down
2 changes: 1 addition & 1 deletion golang/Dockerfile.devel
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV GOROOT_BOOTSTRAP C:/go1.8.1
ENV CGO_ENABLED 0
RUN cmd /C make.bat

FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
ENV GOPATH C:\\gopath
RUN $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); \
Expand Down
2 changes: 1 addition & 1 deletion iis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This dockerfile utilizes components licensed by their respective owners/authors.

FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

LABEL Description="IIS" Vendor="Microsoft" Version="10"

Expand Down
2 changes: 1 addition & 1 deletion java/openjdk/azul/nanoserver/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion java/openjdk/azul/windowsservercore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion java/openjdk/ojdkbuild/windowsservercore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion java/openjdk/redhat/nanoserver/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion java/openjdk/redhat/windowsservercore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion java/openjdk/redhat/windowsservercore/Dockerfile.install
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion mongo/3.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007
MAINTAINER scherer_stefan@icloud.com

ENV MONGO_MAJOR 3.0
Expand Down
2 changes: 1 addition & 1 deletion mongo/3.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

ENV MONGO_VERSION=3.2.11

Expand Down
2 changes: 1 addition & 1 deletion mongo/3.2/Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

ENV MONGO_VERSION 3.2.11

Expand Down
2 changes: 1 addition & 1 deletion mongo/3.2/nano/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

ENV MONGO_VERSION=3.2.11

Expand Down
4 changes: 2 additions & 2 deletions mongo/3.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# escape=`
FROM microsoft/windowsservercore:10.0.14393.1770 as msi
FROM microsoft/windowsservercore:10.0.14393.2007 as msi

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand All @@ -17,7 +17,7 @@ RUN if ((Get-FileHash mongodb.msi -Algorithm sha256).Hash -ne $env:MONGO_DOWNLOA
RUN Start-Process msiexec.exe -ArgumentList '/i', 'mongodb.msi', '/quiet', '/norestart', 'INSTALLLOCATION=C:\mongodb', 'ADDLOCAL=Server,Client,MonitoringTools,ImportExportTools,MiscellaneousTools' -NoNewWindow -Wait
RUN Remove-Item C:\mongodb\bin\*.pdb

FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

COPY --from=msi C:\mongodb\ C:\mongodb\
COPY --from=msi C:\windows\system32\msvcp140.dll C:\windows\system32
Expand Down
4 changes: 2 additions & 2 deletions mongo/3.4/enterprise/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# escape=`
FROM microsoft/windowsservercore:10.0.14393.1770 as msi
FROM microsoft/windowsservercore:10.0.14393.2007 as msi

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand All @@ -17,7 +17,7 @@ RUN if ((Get-FileHash mongodb.msi -Algorithm sha256).Hash -ne $env:MONGO_DOWNLOA
RUN Start-Process msiexec.exe -ArgumentList '/i', 'mongodb.msi', '/quiet', '/norestart', 'INSTALLLOCATION=C:\mongodb', 'ADDLOCAL=Server,Client,MonitoringTools,ImportExportTools,MiscellaneousTools' -NoNewWindow -Wait
RUN Remove-Item C:\mongodb\bin\*.pdb

FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

COPY --from=msi C:\mongodb\ C:\mongodb\
COPY --from=msi C:\windows\system32\msvcp140.dll C:\windows\system32
Expand Down
2 changes: 1 addition & 1 deletion msbuild/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion nanoserverapiscan/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# escape=`
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion nanoserverapiscan/Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# escape=`
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
4 changes: 1 addition & 3 deletions nanoserverapiscan/build.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
docker rm -f nano 2>nul
docker create --name nano microsoft/nanoserver
docker create --name nano microsoft/nanoserver:10.0.14393.2007
mkdir tmp
docker cp nano:Windows/System32/Forwarders tmp
docker build -t win10sdk -f Dockerfile.build .
docker rm -f win10sdk 2>nul
docker create --name win10sdk win10sdk
mkdir tmp\kit\um\x64
mkdir tmp\kit\ucrt\x64
Expand Down
5 changes: 3 additions & 2 deletions nodejs-node-8897/libuv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

ENV chocolateyUseWindowsCompression false

RUN iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'));
RUN iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')); \
choco feature disable --name showDownloadProgress

RUN choco install -y nodejs -version 7.3.0
RUN choco install -y git -params "/GitAndUnixToolsOnPath"
Expand Down
5 changes: 3 additions & 2 deletions nodejs-node-8897/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

ENV chocolateyUseWindowsCompression false

RUN iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'));
RUN iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')); \
choco feature disable --name showDownloadProgress

RUN choco install -y nodejs -version 7.3.0
RUN choco install -y git -params "/GitAndUnixToolsOnPath"
Expand Down
1 change: 1 addition & 0 deletions openssl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ENV chocolateyUseWindowsCompression false
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

RUN iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')); \
choco feature disable --name showDownloadProgress ; \
choco install -y openssl.light

WORKDIR "C:\\Program Files\\OpenSSL\\bin"
Expand Down
2 changes: 1 addition & 1 deletion powershell-50-characters/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007
WORKDIR "Program Files"
RUN rd /S /Q WindowsPowerShell\Modules\PSReadLine
WORKDIR /
2 changes: 1 addition & 1 deletion powershell-50-characters/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Now paste your clipboard into it (I also can repro it from my Mac pasting it int
A fix could be removing PSReadLine from windowsservercore until it is fixed in PSReadLine module.

```Dockerfile
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007
WORKDIR "Program Files"
RUN rd /S /Q WindowsPowerShell\Modules\PSReadLine
WORKDIR /
Expand Down
2 changes: 1 addition & 1 deletion printcommandline/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

RUN powershell.exe -Command Sleep 2 ; wget -Uri https://github.com/StefanScherer/win-print-commandline/releases/download/1.0.3/printcommandline.exe -OutFile printcommandline.exe -UseBasicParsing
RUN printcommandline.exe C:\Program Files
Expand Down
4 changes: 2 additions & 2 deletions prometheus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# escape=`
FROM microsoft/windowsservercore:10.0.14393.1770 AS tar
FROM microsoft/windowsservercore:10.0.14393.2007 AS tar
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

ENV MHOLT_ARCHIVER_VERSION 2.0
Expand All @@ -14,7 +14,7 @@ RUN Invoke-WebRequest $('https://github.com/prometheus/prometheus/releases/downl
RUN .\archiver.exe open prometheus.tar.gz
RUN Rename-Item -Path $('C:\prometheus-{0}.windows-amd64' -f $env:PROMETHEUS_VERSION) -NewName 'C:\download'

FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

COPY --from=tar /download/prometheus.exe /bin/prometheus.exe
COPY --from=tar /download/promtool.exe /bin/promtool.exe
Expand Down
2 changes: 1 addition & 1 deletion python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# escape=`
FROM python:3.6-windowsservercore AS python

FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

COPY --from=python /Python /Python

Expand Down
2 changes: 1 addition & 1 deletion quotes/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

RUN powershell -Command $a = \"world\" ; $b = \"hello \"\"$a\"\"\" ; Write-Host \"'$b'\"

Expand Down
2 changes: 1 addition & 1 deletion quotes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ It is still not a PowerShell script, but a `powershell.exe -Command` call where
```
$ docker build --no-cache -t test3 .
Sending build context to Docker daemon 2.048 kB
Step 1/5 : FROM microsoft/windowsservercore:10.0.14393.1770
Step 1/5 : FROM microsoft/windowsservercore:10.0.14393.2007
---> 93a9c37b36d0
Step 2/5 : RUN powershell -Command $a = \"world\" ; $b = \"hello \"\"$a\"\"\" ; Write-Host \"'$b'\"
---> Running in 8a5ea6ced75c
Expand Down
2 changes: 1 addition & 1 deletion realpath/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM stefanscherer/msbuild:14.0 as build
COPY . .
RUN msbuild realpath.sln /p:Configuration=Release /p:Platform=x64
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007
COPY --from=build /code/x64/release/realpath.exe realpath.exe
CMD [ "/realpath.exe" ]
2 changes: 1 addition & 1 deletion spaces/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007
COPY [ "Sub Dir", "C:/Program Files (x86)/Sub Dir" ]
2 changes: 1 addition & 1 deletion spaces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
How to use spaces in Dockerfiles

```Dockerfile
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007
COPY [ "Sub Dir", "C:/Program Files (x86)/Sub Dir" ]
```

Expand Down
2 changes: 1 addition & 1 deletion swarm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /go/src/github.com/docker/swarm
RUN git checkout $env:SWARM_VERSION
RUN go install .

FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

COPY --from=build /go/src/github.com/docker/swarm/swarm.exe /swarm.exe

Expand Down
2 changes: 1 addition & 1 deletion testvolume/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/windowsservercore:10.0.14393.1770
FROM microsoft/windowsservercore:10.0.14393.2007

ADD ./config /config

Expand Down
2 changes: 1 addition & 1 deletion webserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /code

RUN go build webserver.go

FROM microsoft/nanoserver:10.0.14393.1770
FROM microsoft/nanoserver:10.0.14393.2007

COPY --from=gobuild /code/webserver.exe /webserver.exe

Expand Down
2 changes: 1 addition & 1 deletion webserver/test.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker run --name webserver -p 8080:8080 -d webserver
docker run --name webserver -p 8088:8080 -d webserver
Start-Sleep -Seconds 5
docker logs webserver

0 comments on commit 1bc69ad

Please sign in to comment.