1. ホーム
  2. docker

[解決済み] ドッカーコンテナで接続が拒否される

2022-02-07 06:25:38

質問

私はDockerの初心者で、Railsアプリのデモを作ろうとしています。次のようなdockerfileを作りました。

FROM ruby:2.2
MAINTAINER [email protected]

# 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 は接続を拒否されました」と表示されます。

何が間違っているのでしょうか?

どうすればいいですか?

以下のオプションを使用して、公開されたポートを公開する必要があります。

-P (大文字) または --publish-all を使用すると、Docker にホストからランダムなポートを使用し、それらを公開されたコンテナのポートにマップするように指示します。

-p (小文字) または --publish=[] です。 を使用すると、手動で設定したポートを使用し、それらを公開されたコンテナのポートにマップするように Docker に指示します。

どのポートがマッピングされるかが既に分かっているので、2番目のオプションが好ましいです。もし、最初のオプションを使うなら、次のようにコールする必要があります。 docker inspect demo で、どのランダムポートがホストから使われているかを確認します。 ポート のセクションを参照してください。

以下のコマンドを実行するだけです。

docker run -it -p 8080:8080 demo

その後、あなたのURLは動作します。