刚开始走了弯路,按照网络上的教程一步步安装docker
sudo apt-get remove docker docker-engine docker.io
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get install docker-ce
docker run hello-world
这时一直出现这个错误
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
网络上说是docker没启,按照网络上的操作步骤执行了,还是报错,百度上大多数答案都是类似的,后来到bing上看了国外网友的回答,才知道win10下的ubuntu子系统比较特殊,必须要先安装window版的docker,同时设置
同时设置
powershell中
echo "export DOCKER_HOST=tcp://localhost:2375" >> ~/.bashrc && source ~/.bashrc
然后问题解决
网友评论