在适用于Windows的Ubuntu App上安装Docker

时间:2019-05-29 00:56:24

标签: windows docker ubuntu hyperledger-fabric

我正在尝试在Windows应用商店提供的ubuntu应用上安装docker。

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

enter image description here

这与force ssl命令一起使用

curl -4fsSL 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"

由于无法解析主机而再次引发错误

enter image description here

请提出解决此dns解决问题的解决方案。

1 个答案:

答案 0 :(得分:0)

首先检查您是否有docker,是否有可能安装:

$docker --version

然后,删除旧版本

$sudo apt-get remove docker docker-engine docker.io containerd runc

尝试安装特定的Docker版本(显示可用链接):

$apt-cache madison docker-ce

选择特定版本:

$sudo apt-get install docker-ce=<VERSION_STRING> docker-ce-cli=<VERSION_STRING> containerd.io
$sudo apt-get update

检查安装是否成功:

$sudo docker run hello-world
Hello from Docker!
This message shows that your installation appears to be working correctly.