OCI runtime exec failed: exec failed: unable to start
container process: exec: "/bin/bash":
stat /bin/bash: no such file or directory: unknown
**原因分析:**说明镜像不是bash风格的操作,提示未知的文件或者目录,这个错误说明你的镜像可能是基于busybox的风格,它没有bash shell,但是它在/bin/sh有一个shell
可以将命令中的/bin/bash改成bin/sh 执行命令:docker exec -it [containerId] /bin/bash
如上图所示,已经进入容器内部