美文网首页
win10下的ubuntu的子系统安装docker

win10下的ubuntu的子系统安装docker

作者: 江左金天氏牧 | 来源:发表于2020-10-13 22:31 被阅读0次

    刚开始走了弯路,按照网络上的教程一步步安装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,同时设置

    image.png
    同时设置
    powershell中
    echo "export DOCKER_HOST=tcp://localhost:2375" >> ~/.bashrc && source ~/.bashrc

    然后问题解决

    相关文章

      网友评论

          本文标题:win10下的ubuntu的子系统安装docker

          本文链接:https://www.haomeiwen.com/subject/pxbbpktx.html