OCI runtime exec failed: exec failed:解决方法
玩客云docker安装openwrt是正常的,本来想着能不能安装openclash,就更新一下源,发现有连不上的,我就想会不会是容器不能上网,想进入bash ping一下网络的,发现有问题!通过搜索以后解决了这个问题,现在记录下来。
docker exec -it 容器名 /bin/bash
然而报错
[root@mylinux ~]# docker exec -it goinception /bin/bash
OCI runtime exec failed: exec failed: container_linux.go:345: starting container process caused "exec: \"/bin/bash\": stat /bin/bash: no such file or directory": unknown
原来该镜像是使用alpine制作的,要进入该容器需要输入
docker exec -it 容器名 /bin/sh
OCI runtime exec failed: exec failed:解决方法:等您坐沙发呢!