Docker run的时候报 no such file or directory解决方法

Docker安装成功后,运行
sudo docker run -i -t ubuntu /bin/bash
出现问题:
报 no such file or directory
解决:通过docker -d 启动 查看报出的异常信息

参见https://github.com/dotcloud/docker/issues/4627

I had same problem with Mint 16. I had to install lxc to have it works

sudo apt-get install lxc
sudo apt-get install cgroup-lite
sudo cgroups-mount



转载于:https://my.oschina.net/ganity/blog/223303

你可能感兴趣的:(Docker run的时候报 no such file or directory解决方法)