Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Docker pオプションによるポートマッピングとは?

Posted at

ポートマッピングとは

ポートマッピング 【 port mapping 】

ポートマッピングとは、ブロードバンドルータなどが持つ機能の一つで、グローバルIPアドレスの特定のポートを、特定のプライベートIPアドレスの特定のポートに固定的に対応付けて転送するもの。内部ネットワークの機器に外部から着信することができる。

ポートマッピングとは - IT用語辞典 e-Words

ポートフォワーディングという言葉で使われている場合もあるよう。
ポートフォワーディング - ネットワークエンジニアを目指して

Dockerでポートマッピングをしないと、アクセスすることが出来ないため、コンテナを起動する際にポートマッピングをして起動させます。

-pオプション

  • ポートのマッピングを設定する
  • docker run --name nginx -p <ホストのポート>:<コンテナのポート> nginx
docker run --name nginx -p 80:80 nginx

これでnginxのデフォルトのポート80とローカルのポート80が繋がりました。

アクセスしてみる。

ブラウザにhttp://127.0.0.1:80/もしくはhttp://localhost:80/を入力すると立ち上げたサーバにアクセス出来ます。

もしくはterminalからcurlコマンドでも確認が出来ます。

curl http://localhost:80/
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Comments

No comments

Let's comment your feelings that are more than good

1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?