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 exec コマンド実行時に"No container found for ..."のエラー発生時の確認事項

Posted at

docker-compose execコマンドを用いて、コンテナ内でコマンドを実行しようとした時に、
以下のようなエラーが起こる事がある。

ERROR: No container found for app_1

まずは、コンテナが起動している事を確認しよう。

$ docker-compose ps 

   Name                 Command               State                 Ports              
---------------------------------------------------------------------------------------
app          dockerize -timeout 60s -wa ...   Exit    0.0.0.0:50051->50051/tcp         
mysql_host   docker-entrypoint.sh mysqld      Up      0.0.0.0:3306->3306/tcp, 33060/tcp

docker-compose execコマンドは、起動しているコンテナの内部に入ってコマンドを実行する機能のため、StateがUpである必要がある。

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?