LoginSignup
6
3

More than 3 years have passed since last update.

docker-compose exec 〇〇 bash でコンテナに入れない

Posted at

課題

docker-compose exec 〇〇 bash

で 〇〇というコンテナに入ろうとしたら

OCI runtime exec failed: exec failed: container_linux.go:370: starting container process caused: exec: "bash": executable file not found in $PATH: unknown

というエラーが出た。

解決法

docker-compose exec 〇〇 sh

または

docker-compose exec 〇〇 /bin/sh

とする

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