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?

コンテナに入るとき、コンテナ名を指定しないで入る方法

Posted at

初めに

疑問に思ったことや上手くいかなかったことのアウトプットをしています。
自分なりの理解でアウトプットしていきます。初学者なので誤りもあると思います。
その際はご指摘いただけると幸いです。

各サービス名を書くだけでもコンテナに入れます

起動中のコンテナに入るコマンドとしてこういうコマンドがあります。

docker exec -it [コンテナID] /bin/bash

なんだか長くて面倒くさいですよね。

そういう時に便利なコマンドとして、

docker compose exec <サービス名> bash

こういったコマンドがあります。サービス名を使えば、関連するコンテナに入れます。

例えばwebサービスに接続する場合は

docker compose exec web bash

上記のように書きます。

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?