试图在Linux Mint 17.03上安装Docker-CE - E:无法找到包docker-ce

时间:2017-12-22 13:34:25

标签: docker linuxmint

我正在尝试在Linux Mint 17.03上安装Docker。当我按照Docker website上的步骤操作时,我会直到步骤:

sudo apt-get install docker-ce

这会产生错误“E:无法找到包docker-ce”

到目前为止我执行的步骤是:

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

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 update

sudo apt-get install docker-ce

3 个答案:

答案 0 :(得分:1)

我认为值得记录的是,在关注我在互联网上找到的每一个教程后都无济于事,使其发挥作用的命令是:

sudo add-apt-repository    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ trusty \ stable"

仅用“可靠”

替换$(lsb_release -cs)

答案 1 :(得分:1)

您可以在终端上使用以下命令。

curl -sSL https://get.docker.com | sh

答案 2 :(得分:0)

您可以手动更新软件源,因此可以找到包含docker-ce的ubuntu版本,在我的情况下是tara(mint 19),我更改为仿生(ubuntu);键入“ sudo apt-get install docker TAB”时,将出现docker-ce并可以安装。

enter image description here