gpt4 book ai didi

docker - 无法从浏览器访问 IIS 容器 - Docker

转载 作者:行者123 更新时间:2023-12-05 06:29:23 28 4
gpt4 key购买 nike

Windows 版本:Windows Server 2016

Windows 版 Docker:18.09.0

image

我尝试按照 https://learn.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

enter image description here

以上步骤都可以,就是进不去网站,

我尝试了每一种组合,例如:来自 ipconfig:8000 或 80 的 IP 地址;来自 inspect 的 ip 地址:8000/80。请注意,我还设置了防火墙以允许端口 8000

enter image description here

但这一切都失败了。

然后,我去网上发现我真的可以调用bash。因此,我运行了 exec,但是,发生了一些奇怪的事情:

enter image description here

我不确定这是否意味着容器无法正常工作?但是检查和容器 ls 显示它应该工作。

仅供引用网络: enter image description here

检查容器: enter image description here enter image description here enter image description here

网上实在找不到解决方法

任何建议都会有帮助,谢谢

最佳答案

更新:我让它与下面的配置一起工作,并与远程 IIS 访问一起工作。确保防火墙没有阻止 docker 访问您的本地 ip。此外,我们案例中的应用程序是网站的一部分,因此我们需要使用 Webadministration 将其部署为应用程序以使其运行。日志和其他一切现在都在工作,我们有一个正在运行的样本。

我也一直在玩 docker 容器,我在部署时遇到了类似的问题。我正在使用服务器核心镜像,因为它上面有完整的 powershell,但是我有这样定义的 dockerfile 来构建镜像,因为应用程序似乎没有启动。该应用程序还没有在核心上,但很快就会迁移到核心上,以使工作图像更小。从这个示例中需要注意的另一件事是,应用程序池没有被创建,即使它是在我的命令中定义的。有了它,您可以远程连接 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 镜像分配内存大小,而不仅仅是所有者的标准。

关于docker - 无法从浏览器访问 IIS 容器 - Docker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53590787/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com