无法从浏览器访问 IIS 容器 - Docker
Cannot access an IIS container from browser - Docker
Windows 版本:Windows 服务器 2016
Docker 对于 Windows 版本:18.09.0
我尝试按照 https://docs.microsoft.com/en-us/virtualization/windowscontainers/quick-start/quick-start-images
中的步骤操作
我在 c:\Build:
上有一个 Docker 文件
FROM microsoft/iis
RUN echo "Hello World - Dockerfile" > c:\inetpub\wwwroot\index.html
请注意,我也尝试过使用 FROM microsoft/iis:10.0.14393.206
因此,我 运行 使用具有管理员权限的 powershell:
docker build -t imagename c:\Build
然后我运行:
docker run -d -p 8000:80 --name container imagename ping -t localhost
以上步骤都可以,就是进不去网站,
我尝试了每一种组合,例如:
来自 ipconfig:8000 或 80 的 IP 地址;来自 inspect 的 ip 地址:8000 / 80。
请注意,我还设置了防火墙以允许端口 8000
但这一切都失败了。
然后上网查了下发现居然可以调用bash。因此,我 运行 执行,但是,发生了一些事情 st运行ge:
我不确定这是否意味着容器无法正常工作?
但是 inspect 和 container ls 显示它应该可以工作。
仅供参考
网络:
检查容器:
网上实在找不到解决方法
任何建议都会有帮助,谢谢
一个月后,我有另一种方法可以访问容器的 IIS...
我要post这里的答案,以防有人遇到类似问题
有很大关系
区别是:
要在容器中完全安装 IIS,请使用以下 DockerFile:
(文档中遗漏了一些步骤,如果下面的 Dockerfile 中没有包含以下行,则无法安装 wmsvc 和 IIS 管理服务)
FROM microsoft/dotnet-framework:4.6.2
RUN powershell -Command Install-WindowsFeature -name Web-Server -IncludeManagementTools
RUN powershell -Command Add-WindowsFeature web-webserver
RUN powershell -Command Install-WindowsFeature -name Web-Basic-Auth
RUN powershell -Command Install-WindowsFeature -name Web-Windows-Auth
RUN powershell -Command Install-WindowsFeature -name Web-Net-Ext45
RUN powershell -Command Install-WindowsFeature -name Web-Asp-Net45
RUN powershell -Command Install-WindowsFeature -name Web-ISAPI-Ext
RUN powershell -Command Install-WindowsFeature -name Web-ISAPI-Filter
RUN powershell -Command Install-WindowsFeature -name Web-WHC
RUN powershell -Command Install-WindowsFeature -name Web-Mgmt-Tools
RUN powershell -Command Install-WindowsFeature -name Web-Mgmt-Compat
RUN powershell -Command Install-WindowsFeature -name Web-Mgmt-Service
RUN powershell -Command Install-WindowsFeature -name Web-Scripting-Tools
RUN powershell Dism /online /enable-feature /featurename:IIS-ManagementService /all
Docker run
带有-it 的图像 / Docker attach
容器
通过键入 powershell
启动容器的 powershell
运行宁Get-service
看看有没有IISadmin,w3svc,wmsvc
会显示wmsvc没有启动(奇怪的是我运行sc config wmsvc start=auto
在DockerFile里还是不行)
net start
服务
使用主机的IIS连接容器的IIS(类似上面link给出的步骤)
它应该能够从主机连接到容器,现在您已经成功地在容器中实现了一个 Web 应用程序。
PS。请注意,防火墙可能会阻止远程管理进程
更新: 我让它与下面的配置一起工作,并使用远程 IIS 访问。确保防火墙没有阻止 docker 到您的本地 ip。此外,我们案例中的应用程序是网站的一部分,因此我们需要使用 Webadministration 将其部署为应用程序以使其运行。日志和其他一切现在都在工作,我们有一个 运行 示例。
我也一直在玩 docker 容器,但我在部署时遇到了类似的问题。我正在使用服务器核心映像,因为它上面有完整的 powershell,但我有这样定义的 docker 文件来构建映像,因为应用程序似乎无法启动。该应用程序还没有在核心上,但很快就会迁移到核心上,以使工作图像更小。从这个示例中需要注意的另一件事是,应用程序池没有被创建,即使它是在我的命令中定义的。有了它,您可以使用 iis 远程管理工具进行远程连接,并检查服务器在 docker.:
中的设置情况。
##Pull the base image to use
FROM mcr.microsoft.com/windows/servercore/iis
#Enable verbose output in case of errors
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]
#install all needed features of IIS
RUN Install-WindowsFeature -name Web-Server -IncludeManagementTools ;\
Install-WindowsFeature -name Web-Basic-Auth ;\
Install-WindowsFeature -name Web-Windows-Auth ;\
Install-WindowsFeature -name Web-Net-Ext45 ;\
Install-WindowsFeature -name Web-ISAPI-Ext ;\
Install-WindowsFeature -name Web-ISAPI-Filter ;\
Install-WindowsFeature -name Web-WHC ;\
Install-WindowsFeature NET-Framework-45-ASPNET ; \
Install-WindowsFeature Web-Asp-Net45 ;\
Install-WindowsFeature -Name Web-Mgmt-Service ;\
Install-WindowsFeature -name Web-Mgmt-Tools ;\
Install-WindowsFeature -name Web-Mgmt-Compat ;\
Install-WindowsFeature -name Web-Scripting-Tools ;\
Dism /online /enable-feature /featurename:IIS-ManagementService /all ;\
##Still inside the same run command, enable remote management for IIS on docker
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\WebManagement\Server -Name EnableRemoteManagement -Value 1 -Force ;\
Get-Service -Name WMSVC | Start-Service ;\
Set-Service –Name WMSVC –StartupType 'Automatic' ;\
##In the same run Command add the user and password for IIS remote management
net user myuser superP@ss123 /ADD ;\
net localgroup administrators myuser /add
COPY . myapp
RUN New-WebAppPool myapp
#The configStore is an application of a website, so add it as such to the service
RUN Import-Module WebAdministration; Get-Module ;\
New-Item 'IIS:Sites\Default Web Site\myapp' -physicalPath 'c:\myapp' -ApplicationPool 'myapp' -type 'Application'
EXPOSE 51329 80
另一个我无法回答的问题是,我们是否可以在创建时实际为 docker 图像分配内存大小,而不仅仅是所有者的标准。
Windows 版本:Windows 服务器 2016
Docker 对于 Windows 版本:18.09.0
我尝试按照 https://docs.microsoft.com/en-us/virtualization/windowscontainers/quick-start/quick-start-images
中的步骤操作我在 c:\Build:
上有一个 Docker 文件FROM microsoft/iis
RUN echo "Hello World - Dockerfile" > c:\inetpub\wwwroot\index.html
请注意,我也尝试过使用 FROM microsoft/iis:10.0.14393.206
因此,我 运行 使用具有管理员权限的 powershell:
docker build -t imagename c:\Build
然后我运行:
docker run -d -p 8000:80 --name container imagename ping -t localhost
以上步骤都可以,就是进不去网站,
我尝试了每一种组合,例如: 来自 ipconfig:8000 或 80 的 IP 地址;来自 inspect 的 ip 地址:8000 / 80。 请注意,我还设置了防火墙以允许端口 8000
但这一切都失败了。
然后上网查了下发现居然可以调用bash。因此,我 运行 执行,但是,发生了一些事情 st运行ge:
我不确定这是否意味着容器无法正常工作? 但是 inspect 和 container ls 显示它应该可以工作。
仅供参考
网络:
检查容器:
网上实在找不到解决方法
任何建议都会有帮助,谢谢
一个月后,我有另一种方法可以访问容器的 IIS...
我要post这里的答案,以防有人遇到类似问题
有很大关系区别是:
要在容器中完全安装 IIS,请使用以下 DockerFile:
(文档中遗漏了一些步骤,如果下面的 Dockerfile 中没有包含以下行,则无法安装 wmsvc 和 IIS 管理服务)
FROM microsoft/dotnet-framework:4.6.2
RUN powershell -Command Install-WindowsFeature -name Web-Server -IncludeManagementTools
RUN powershell -Command Add-WindowsFeature web-webserver
RUN powershell -Command Install-WindowsFeature -name Web-Basic-Auth
RUN powershell -Command Install-WindowsFeature -name Web-Windows-Auth
RUN powershell -Command Install-WindowsFeature -name Web-Net-Ext45
RUN powershell -Command Install-WindowsFeature -name Web-Asp-Net45
RUN powershell -Command Install-WindowsFeature -name Web-ISAPI-Ext
RUN powershell -Command Install-WindowsFeature -name Web-ISAPI-Filter
RUN powershell -Command Install-WindowsFeature -name Web-WHC
RUN powershell -Command Install-WindowsFeature -name Web-Mgmt-Tools
RUN powershell -Command Install-WindowsFeature -name Web-Mgmt-Compat
RUN powershell -Command Install-WindowsFeature -name Web-Mgmt-Service
RUN powershell -Command Install-WindowsFeature -name Web-Scripting-Tools
RUN powershell Dism /online /enable-feature /featurename:IIS-ManagementService /all
Docker run
带有-it 的图像 /Docker attach
容器通过键入
powershell
启动容器的 powershell
运行宁
Get-service
看看有没有IISadmin,w3svc,wmsvc
会显示wmsvc没有启动(奇怪的是我运行sc config wmsvc start=auto
在DockerFile里还是不行)
net start
服务使用主机的IIS连接容器的IIS(类似上面link给出的步骤)
它应该能够从主机连接到容器,现在您已经成功地在容器中实现了一个 Web 应用程序。
PS。请注意,防火墙可能会阻止远程管理进程
更新: 我让它与下面的配置一起工作,并使用远程 IIS 访问。确保防火墙没有阻止 docker 到您的本地 ip。此外,我们案例中的应用程序是网站的一部分,因此我们需要使用 Webadministration 将其部署为应用程序以使其运行。日志和其他一切现在都在工作,我们有一个 运行 示例。
我也一直在玩 docker 容器,但我在部署时遇到了类似的问题。我正在使用服务器核心映像,因为它上面有完整的 powershell,但我有这样定义的 docker 文件来构建映像,因为应用程序似乎无法启动。该应用程序还没有在核心上,但很快就会迁移到核心上,以使工作图像更小。从这个示例中需要注意的另一件事是,应用程序池没有被创建,即使它是在我的命令中定义的。有了它,您可以使用 iis 远程管理工具进行远程连接,并检查服务器在 docker.:
中的设置情况。##Pull the base image to use
FROM mcr.microsoft.com/windows/servercore/iis
#Enable verbose output in case of errors
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]
#install all needed features of IIS
RUN Install-WindowsFeature -name Web-Server -IncludeManagementTools ;\
Install-WindowsFeature -name Web-Basic-Auth ;\
Install-WindowsFeature -name Web-Windows-Auth ;\
Install-WindowsFeature -name Web-Net-Ext45 ;\
Install-WindowsFeature -name Web-ISAPI-Ext ;\
Install-WindowsFeature -name Web-ISAPI-Filter ;\
Install-WindowsFeature -name Web-WHC ;\
Install-WindowsFeature NET-Framework-45-ASPNET ; \
Install-WindowsFeature Web-Asp-Net45 ;\
Install-WindowsFeature -Name Web-Mgmt-Service ;\
Install-WindowsFeature -name Web-Mgmt-Tools ;\
Install-WindowsFeature -name Web-Mgmt-Compat ;\
Install-WindowsFeature -name Web-Scripting-Tools ;\
Dism /online /enable-feature /featurename:IIS-ManagementService /all ;\
##Still inside the same run command, enable remote management for IIS on docker
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\WebManagement\Server -Name EnableRemoteManagement -Value 1 -Force ;\
Get-Service -Name WMSVC | Start-Service ;\
Set-Service –Name WMSVC –StartupType 'Automatic' ;\
##In the same run Command add the user and password for IIS remote management
net user myuser superP@ss123 /ADD ;\
net localgroup administrators myuser /add
COPY . myapp
RUN New-WebAppPool myapp
#The configStore is an application of a website, so add it as such to the service
RUN Import-Module WebAdministration; Get-Module ;\
New-Item 'IIS:Sites\Default Web Site\myapp' -physicalPath 'c:\myapp' -ApplicationPool 'myapp' -type 'Application'
EXPOSE 51329 80
另一个我无法回答的问题是,我们是否可以在创建时实际为 docker 图像分配内存大小,而不仅仅是所有者的标准。