是否有人知道是否存在适用于最新 Ubuntu 版本 19.10 的一些 ppa 包源,当我从 Ubuntu 19.04 升级到 19.10 时我遇到了问题,无法工作?
答案1
Docker 存储库目前有 20.04 的软件包(焦点),因此您可以按照官方指南或使用以下命令:
sudo apt install curl
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 focal stable"
sudo apt install docker-ce
答案2
目前还没有适用于 Ubuntu 19.10 Eoan Ermine 的 Docker 软件包,如下所示:https://github.com/docker/for-linux/issues/832。之前的 Ubuntu 19.04 Disco Dingo 软件包适用于大多数用户。
为了解决这个问题,避免污染/etc/apt/source.list
。
选项1:添加 .list 文件到/etc/apt/sources.list.d/
:
sudo bash -c 'echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu disco stable" > /etc/apt/sources.list.d/docker.list'
选项 2:
sudo nano /etc/apt/sources.list.d/docker.list
添加(如果你之前已经安装了docker,请在那里更改埃科安到迪斯科作为:)
deb [arch=amd64] https://download.docker.com/linux/ubuntu disco stable
您可以在这里找到其他解决方案,例如手动安装:https://github.com/docker/for-linux/issues/833
答案3
如果你不确定docker拥有哪个lsb版本并且你的主机与哪个lsb版本兼容,你可以检查/etc/debian_version
然后检查链接https://download.docker.com/linux/ubuntu
,它会列出docker支持的所有版本,例如在我的主机上,输出lsb_release -cs
但是bionic
当cat cat /etc/debian_version
它说
buster/sid
所以我buster
从docker版本中选了一个