【Docker for Mac】Dockerコンテナからlocalhostでホストマシンにアクセスする方法
2021/07/14
Docker for Macでの話
$ docker --version
Docker version 20.10.7, build f0df350
やりたいこと
Dockerコンテナで立ち上げたアプリケーション(今回の例ではNginx)に別のDockerコンテナ(今回の例ではRubyのコンテナ)からlocalhostでアクセスしたい
NginxをDockerで起動
$ docker run --rm -it -p 8080:80 nginx:latest
ホストマシン(Mac)からだとアクセスできる
$ curl http://localhost:8080
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
Rubyのコンテナからだとlocalhostにアクセスできない
コンテナ内のlocalhostになるから当たり前である
これを別のコンテナで立ち上がってるNginxにlocalhostで繋がるようにしたい
$ docker run --rm -it ruby:2.7.3 bin/bash
root@81295f8dfddf:/# curl http://localhost:8080
curl: (7) Failed to connect to localhost port 8080: Connection refused
やり方
--add-host
オプションでlocalhost:192.168.65.2
を指定したら良い
$ docker run --rm -it --add-host=localhost:192.168.65.2 ruby:2.7.3 bin/bash
root@069c911b72cc:/# curl http://localhost:8080
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
補足メモ(作業ログ)
host.docker.internal
というDNS名
Docker for Mac(Docker for Windowsも)の場合、host.docker.internal
というDNS名が用意されているので、これを使えばホストにアクセスできる
じゃあこれでいいじゃん!話だけど、使いたいアプリケーションがlocalhost
でアクセスいないといけない場合があった
root@81295f8dfddf:/# curl http://host.docker.internal:8080
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
host.docker.internal
がどのIPを指しているか
digコマンドで確認
192.168.65.2
らしい
root@81295f8dfddf:/# dig host.docker.internal +short
192.168.65.2
※ Rubyのコンテナにdigコマンドを入れる方法は別記事で書いた(【Debian】digのインストール)
コンテナから192.168.65.2
にアクセス
ホスト経由でDockerコンテナで立ち上がってるNginxに繋がった
root@81295f8dfddf:/# curl http://192.168.65.2:8080
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>