LoginSignup
7
7

More than 5 years have passed since last update.

dockerコンテナ間の依存関係グラフを見る

Last updated at Posted at 2015-10-24

dockerコンテナは --linkオプションの指定に従って依存関係が設定されていますが、この状態は /var/lib/docker/linkgraph.db に格納されています。

このファイルはsqlite3のデータベースなので、

sqlite3 /var/lib/docker/linkgraph.db
sqlite> select * from edge;
<entity id>|<parent id>|<name>
<entity id>|<parent id>|<name>
<entity id>|<parent id>|<name>
...
0||

という感じで確認できます。rootノード "0||" が入っていて、全てのエンティティはこれの子になっているようです。

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