nanoserver/iis

By nanoserver

Updated over 6 years ago

Nano Server + IIS. Updated on 08/21/2018 -- Version: 10.0.14393.2312

Image
51

1M+

Windows Container Based: microsoft/nanoserver. IIS rol added.

How to use:

Install docker on your OS (Windows 10, Windows Server 2016, Nano Server, etc.). Once docker is installed, execute in elevated prompt (PowerShell 5, etc): docker pull nanoserver/iis

To run docker just type: docker run --name nanoiis -d -it -p 80:80 nanoserver/iis

Show base images: docker images

Show running containers: docker ps -a -f status=running

Show container IP: docker inspect -f "{{ .NetworkSettings.Networks.nat.IPAddress }}" nanoiis

Show containerID: docker inspect --format="{{.Id}}" nanoiis

Now you can access via browser using container IP Address (ex.: http://172.18.10.110 ). Use here container IP.

Access via powershell: Enter-PSSession -RunAsAdministrator

If you want container starts everytime docker service starts: docker update --restart=always

How to manage Nano Server via remote PS:

Show docker images.

docker images

Add Nano Server Container + IIS (image) .

docker pull nanoserver/iis

Create a Windows Docker Container for Nano Server.

docker run --name nano -d -it -p 80:80 nanoserver/iis

Show container running.

docker ps -a -f status=running

Get Nano Server Container IP Address.

docker inspect -f "{{ .NetworkSettings.Networks.nat.IPAddress }}" nano

Script to create a remote interactive session from host to Nano Server Container.

$container= docker inspect --format="{{.Id}}" nano $sesion = New-PSSession -ContainerId $container -RunAsAdministrator

Samples of remote scripts to run into a Nano Server Container. (Windows Update).

Search of updates not installed. You can change "IsInstalled=0" for "IsInstalled=1" if you want to see updates installed.

$WinUpdate = { $ci = New-CimInstance -Namespace root/Microsoft/Windows/WindowsUpdate -ClassName MSFT_WUOperationsSession
$result = $ci | Invoke-CimMethod -MethodName ScanForUpdates -Arguments @{SearchCriteria="IsInstalled=0";OnlineScan=$true} $result.Updates } Invoke-Command -Session $sesion -ScriptBlock $WinUpdate

Apply Windows Updates not installed.

$WinUpdate = { $ci = New-CimInstance -Namespace root/Microsoft/Windows/WindowsUpdate -ClassName MSFT_WUOperationsSession Invoke-CimMethod -InputObject $ci -MethodName ApplyApplicableUpdates } Invoke-Command -Session $sesion -ScriptBlock $WinUpdate

Nano Server is a Microsoft product. Terms of use and official image base: https://hub.docker.com/r/microsoft/nanoserver/

Hope you enjoy it. Rate, comment and share it. Thanks...

Dockerfile: https://github.com/nanoserver/iis/blob/master/Dockerfile

https://jbit.es

Docker Pull Command

docker pull nanoserver/iis