OCI runtime exec failed: exec failed: unable to start container process: exec: "bash": 电脑版发表于:2022/8/22 11:07 使用docker exec -it 容器名 /bin/bash进入docker容器报错: tn6>OCI runtime exec failed: exec failed: unable to start container process: exec: "bash": executable file not found in $PATH: unknown **解决方法:使用如下命令** 镜像是使用alpine制作的,要进入该容器需要输入 ``` docker exec -it 容器名 /bin/sh ```