由Docker for Windows Windows容器本地托管的网站无法通过localhost访问

时间:2017-10-05 01:29:21

标签: docker docker-for-windows windows-container

我正在尝试设置一个Docker for Windows容器,以使用lite-server和Sphinx构建和托管一个简单的静态网站。我先运行容器。

$ docker run -it -p 8080:8080 -v "$(pwd):C:\src" website

然后启动lite-server。

$ yarn serve

该网站可从容器的IP地址(例如http://172.26.141.28:8080)获得,因此我知道lite-server正在提供内容,但我无法使用http://localhost:8080访问该内容。

如何通过localhost:8080公开网站?

我的Dockerfile如下

FROM microsoft/windowsservercore

ENV chocolateyUseWindowsCompression false
RUN powershell -Command \
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'));

RUN choco install nodejs -y
RUN choco install yarn -y
RUN choco install python3 -y
RUN pip install sphinx
RUN pip install sphinx_rtd_theme

# https://github.com/nodejs/node/issues/8897#issuecomment-319010735
# Workaround for error An unexpected error occurred: "ENOENT: no such file or directory, lstat 'C:\\ContainerMappedDirectories'".
RUN mkdir C:\src
RUN powershell Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices' -Name 'S:' -Value '\??\C:\src' -Type String
WORKDIR 'S:\\'

EXPOSE 8080
CMD ["powershell"]

使用

启动lite-server
"scripts": {
  "serve": "light-server -s ./build/html -p 8080"
},

软件:

  • Docker版本17.06.2-ce,build cec0b72
  • Windows 10(主机)
  • Windowsservercore(容器)

2 个答案:

答案 0 :(得分:1)

我不知道是否有更新,但截至一年前,这是预期的行为:

  

容器及其端口只能通过NATed IP地址访问。

请参阅:https://github.com/docker/for-win/issues/204#issuecomment-258638899

答案 1 :(得分:0)

您的泊坞窗文件显示您正在以8080公开端口,并且您正在映射8091。

尝试运行以下命令,

  

docker run -it -p 8080 :8080 -v" $(pwd):C:\ src"网站

您应该可以将其导航到http://localhost:8080

希望它有所帮助。