无法连接到containerd

时间:2016-08-06 21:39:04

标签: docker

我在docker-in-docker(dind)场景中运行了这样的命令:

docker daemon --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay

我在日志中得到了这个:

INFO[0000] libcontainerd: new containerd process, pid: 18
FATA[0000] Failed to connect to containerd. Please make sure containerd is installed in your PATH or you have specificed the correct address. Got error: write /proc/18/oom_score_adj: permission denied

1 个答案:

答案 0 :(得分:6)

请务必以privileged模式运行容器。

docker run --privileged ...

这应该解决问题;你现在应该可以在这个Docker镜像中安装和运行Docker。