0
0

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-composeで作成したコンテナのIPアドレスを確認する方法

Last updated at Posted at 2021-03-31

Docker-composeで立てたコンテナのIPアドレスを確認する方法を情けないことにど忘れしてしまったので備忘録として記します。

コンテナのIPアドレス確認方法

docker inspect -f "{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}" CONTAINER_NAME

以上のコマンドを打つことでIPアドレスを確認できます。

試したコマンド

``` docker container inspect -f "{{.NetworkSettings.IPAddress}}" CONTAINER_NAME ``` 他ユーザー様の記事を参考にしてこちらのコマンドを打ちましたが、no valueと返ってくる結果となりました。

参考

公式ドキュメント https://matsuand.github.io/docs.docker.jp.onthefly/engine/reference/commandline/inspect/

docker-compose で立ち上げたコンテナの IP アドレスを調べる
https://qiita.com/tily/items/8a8fd335d9b9da549a18

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?