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 1 year has passed since last update.

docker上でネットワーク関連コマンドを使用する

Posted at

dockerでifconfigを実行したい。
docker上は最小構成のコンテナなためネットワーク関連コマンドを含んでいないらしい・・・

使うにはコンテナ内で関連パッケージのインストールを実施する。

root@gitlab:/# apt-get update
root@gitlab:/# apt-get install iputils-ping net-tools dnsutils
root@gitlab:/# apt-get install iputils-ping

インストールが完了したら、実際にpingやifcofigが使えるようになったことを確認します。

root@gitlab:/# ifconfig

これでトラブルシュートを行うことができるようになりますね。ちなみにトラブル原因などが分かった後はそのまま使うのではなく、一旦コンテナを作り直すことを忘れずに。

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?