船坞集装箱拒绝连接

我是 Docker 的新手,正在尝试制作一个演示 Rails 应用程序,我做了一个 Docker 文件,看起来像这样:

FROM ruby:2.2
MAINTAINER marko@codeship.com


# Install apt based dependencies required to run Rails as
# well as RubyGems. As the Ruby image itself is based on a
# Debian image, we use apt-get to install those.
RUN apt-get update && apt-get install -y \
build-essential \
nodejs


# Configure the main working directory. This is the base
# directory used in any further RUN, COPY, and ENTRYPOINT
# commands.
RUN mkdir -p /app
WORKDIR /app


# Copy the Gemfile as well as the Gemfile.lock and install
# the RubyGems. This is a separate step so the dependencies
# will be cached unless changes to one of those two files
# are made.
COPY Gemfile Gemfile.lock ./
RUN gem install bundler && bundle install --jobs 20 --retry 5


# Copy the main application.
COPY . ./


# Expose port 8080 to the Docker host, so we can access it
# from the outside.
EXPOSE 8080


# The main command to run when the container starts. Also
# tell the Rails dev server to bind to all interfaces by
# default.
CMD ["bundle", "exec", "rails", "server", "-b", "0.0.0.0", "-p", "8080"]

然后我按照这样的方式建造了它:

docker build -t demo .

并调用一个命令来启动服务器,该服务器在端口8080上启动服务器:

Johns-MacBook-Pro:demo johnkealy$ docker run -it demo
=> Booting WEBrick
=> Rails 4.2.5 application starting in development on http://0.0.0.0:8080
=> Run `rails server -h` for more startup options
=> Ctrl-C to shutdown server
[2016-04-23 16:50:34] INFO  WEBrick 1.3.1
[2016-04-23 16:50:34] INFO  ruby 2.2.4 (2015-12-16) [x86_64-linux]
[2016-04-23 16:50:34] INFO  WEBrick::HTTPServer#start: pid=1 port=8080

然后,我试图找到正确的 IP 导航:

Johns-MacBook-Pro:demo johnkealy$ docker-machine ip default
192.168.99.100

我导航到 http://192.168.99.100:8080并得到错误这个网站无法达到192.168.99.100拒绝连接。

我能做错什么?

201633 次浏览

您需要使用以下选项发布公开的端口:

- P (大写)或者—— release-all ,它将告诉 Docker 使用来自主机的随机端口,并将它们映射到暴露的容器端口。

- p (小写)或—— release = [] ,它将告诉 Docker 使用您手动设置的端口,并将它们映射到暴露的容器的端口。

第二个选项是首选的,因为您已经知道映射了哪些端口。如果您使用第一个选项,那么您将需要调用 docker inspect demo,并在 港口部分检查哪些随机端口正在从您的主机使用。

只需运行以下命令:

docker run -it -p 8080:8080 demo

之后,你的网址将工作。

如果你在 窗口10回家上使用 码头工具箱,你需要通过 docker-machine ip 命令访问网页。一般是192.168.99.100:

假设您正在使用发布命令运行,如下所示。

docker run -it -p 8080:8080 demo

使用 Window10专业版,您可以使用 localhost 或相应的 loop back 127.0.0.1:8080等(Tomcat 或任何您希望的)访问。这是因为您没有一个虚拟框,并且 docker 是直接在 Window Hyper V 上运行的,并且可以直接访问环回。

检查窗口中的主机文件是否有任何偏离 映射到 localhost 的127.0.0.1

在 Docker 快速启动终端运行以下命令:

$ docker-machine ip 192.168.99.100

我也有同样的问题,我在 Windows Home 上使用 Docker 工具箱。 我不得不使用 http://192.168.99.100:8080/而不是 localhost

您可以使用以下命令获得正确的 IP 地址:

docker-machine ip

上面的命令为我返回了 192.168.99.100

Dockerfile 中的命令 EXPOSE允许您将容器端口绑定到主机上的某个端口,但它不执行其他任何操作。 在运行容器时,要绑定端口,请指定 -p选项。

假设你暴露了端口5000。在运行容器时生成映像之后,运行 docker run -p 5000:5000 name。这将容器的端口5000绑定到您的膝上型电脑/计算机端口5000,并且该端口转发允许容器接收外部请求。

这个应该够了。

在 Windows 中,通常还需要以管理员身份运行命令行。

作为标准用户:

docker build -t myimage -f Dockerfile .
Sending build context to Docker daemon  106.8MB
Step 1/1 : FROM mcr.microsoft.com/dotnet/core/runtime:3.0
Get https://mcr.microsoft.com/v2/: dial tcp: lookup mcr.microsoft.com on [::1]:53: read udp [::1]:45540->[::1]:53: read:
>>>connection refused

但是作为一个管理者。

docker build -t myimage -f Dockerfile .
Sending build context to Docker daemon  106.8MB
Step 1/1 : FROM mcr.microsoft.com/dotnet/core/runtime:3.0
3.0: Pulling from dotnet/core/runtime
68ced04f60ab: Pull complete                                                                                             e936bd534ffb: Pull complete                                                                                             caf64655bcbb: Pull complete                                                                                             d1927dbcbcab: Pull complete                                                                                             Digest: sha256:e0c67764f530a9cad29a09816614c0129af8fe3bd550eeb4e44cdaddf8f5aa40
Status: Downloaded newer image for mcr.microsoft.com/dotnet/core/runtime:3.0
---> f059cd71a22a
Successfully built f059cd71a22a
Successfully tagged myimage:latest

请确保在图像名称之前使用 -p标志,如下所示:

docker run -p 8080:8080 demo