Windows Container On Azure                          


Note:Microsoft Azure does not support Hyper-V containers. To complete Hyper-V Container exercises, you need an on-prem container host.


使用Portal创建WS2016 Core with Containers TP4,步骤不赘述。

Windows Container On Azure_Windows

虚拟机创建完成后,使用PowerShell命令进入PowerShell session

Windows Container On Azure_containers_02

验证Windows Server Core OS镜像已经安装,使用Get-Container Image命令

Windows Container On Azure_Windows_03

使用New-Container命令创建一个新的名字为TP4DemoWindows容器,并将容器连接到VM Switch 默认虚拟交换机

Windows Container On Azure_blank_04

使用Start-Container命令启动容器

Windows Container On Azure_containers_05

使用Enter-PSSession命令连接到容器,Install-Windows Feature命令在容器中安装IIS角色

Windows Container On Azure_support_06

退出,停止Container

Windows Container On Azure_Microsoft_07

创建一个包含IIS的新容器并发布

Windows Container On Azure_Microsoft_08

创建一个新容器,从WindowsServerCoreIIS容器镜像。

Windows Container On Azure_support_09

启动IIS Container

Windows Container On Azure_blank_10

配置网络,查看Container的IP地址

Invoke-Command -ContainerName IIS {ipconfig}

Windows Container On Azure_Microsoft_11

创建NAT端口映射

if (!(Get-NetNatStaticMapping | where {$_.ExternalPort -eq80})) { Add-NetNatStaticMapping -NatName "ContainerNat" -Protocol TCP -ExternalIPAddress 0.0.0.0 -InternalIPAddress 172.16.0.2 -InternalPort 80 -ExternalPort 80 }

Windows Container On Azure_blank_12

配置防火墙规则

if (!(Get-NetFirewallRule | where {$_.Name -eq"TCP80"})) { New-NetFirewallRule -Name "TCP80" -DisplayName "HTTP on TCP/80" -Protocol tcp -LocalPort 80 -Action Allow -Enabled True }

Windows Container On Azure_support_13

配置IIS主页

Enter-PSSession -ContainerName IIS -RunAsAdministrator

del C:\inetpub\wwwroot\iisstart.htm

" Windows Server Container On Azure" > C:\inetpub\wwwroot\index.html

Windows Container On Azure_support_14


配置VM的终结点后,可以通过浏览器访问IIS Container页面。

Windows Container On Azure_support_15