26

我在 VMware 上的 Ubuntu VM 中使用https://docs.docker.com/engine/install/ubuntu/在 Ubuntu 20.04 上安装 docker。

但是在运行将存储库添加到 Ubuntu 的命令时。

sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common

我得到以下错误

Get:1 http://us.archive.ubuntu.com/ubuntu focal InRelease [265 kB]                                                                           
Ign:2 http://dl.google.com/linux/chrome/deb stable InRelease                                                                                 
Hit:3 http://dl.google.com/linux/chrome/deb stable Release                                                                                   
Hit:5 http://security.ubuntu.com/ubuntu focal-security InRelease                                                                             
Ign:6 https://download.docker.com/linux/ubuntu focal InRelease                                             
Err:7 https://download.docker.com/linux/ubuntu focal Release
  404  Not Found [IP: 13.225.7.126 443]
Get:8 http://us.archive.ubuntu.com/ubuntu focal-updates InRelease [89.1 kB]
Hit:9 http://us.archive.ubuntu.com/ubuntu focal-backports InRelease
Reading package lists... Done
E: The repository 'https://download.docker.com/linux/ubuntu focal Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

运行命令时

sudo apt-get install docker-ce docker-ce-cli containerd.io

我收到错误

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package docker-ce is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'docker-ce' has no installation candidate
E: Unable to locate package docker-ce-cli
E: Unable to locate package containerd.io
E: Couldn't find any package by glob 'containerd.io'
E: Couldn't find any package by regex 'containerd.io'

这是什么原因?我是码头工人的新手。是否有解决方法,或者我应该使用源代码或其他东西安装 docker?谢谢你。

4

7 回答 7

51

目前,您可以使用:

sudo apt-get install -y docker.io

然后检查:

docker -v
于 2020-04-24T09:09:14.460 回答
7

Docker 尚未发布fossa (20.04) 的存储库。正如@Wared 所说,跑步

sudo apt install -y docker.io

将从 ubuntu 存储库中获取 docker。

通过这个 docker 安装,我可以在 20.04 上成功使用我在 18.04 中使用的所有 docker 映像。

于 2020-04-25T17:56:41.390 回答
7

根据在我的 PC 上进行测试后的文档,这些说明将在 WMware Ubuntu 焦点上成功安装 docker:

sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl  gnupg
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io

在此处输入图像描述

于 2021-03-06T01:26:05.070 回答
5

我知道问题是关于Ubuntu 20的。但是如果你试图在Linux Mint 20上安装它(像我一样),问题看起来是一样的,但答案是不同的。

安装指南告诉您像这样添加 PPA:

sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"

但是,这$(lsb_release -cs)部分是问题所在,因为它将发布名称作为参数传递给存储库命令。在 Ubuntu 20 中,该命令输出focal并且一切顺利,但在 Linux Mint 中,该命令输出ulyana并且它失败,因为 docker 没有该版本。

如果您想在 mint 上安装它,只需将该命令替换为焦点字符串,以便获得 ubuntu 焦点版本:

sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
focal \
stable"
于 2020-07-15T02:29:59.397 回答
2

根据https://docs.docker.com/engine/install/ubuntu/上的信息,目前不支持 Ubuntu 20.04。

在此处输入图像描述

于 2020-04-24T08:37:54.183 回答
2

Ubuntu 20.04 LTS 的 docker 存储库还没有准备好(我不明白他们为什么不专注于此,而不是为 19.10 等非 LTS 版本推出一个版本!)。

但是 Ubuntu Universe 存储库中已经提供的版本是最新的,因此请在此期间使用它。

当 Docker 的人准备发布他们的 20.04 存储库时,只需按照以下说明操作:https ://docs.docker.com/engine/install/ubuntu/

..then,当然还包括“卸载旧版本”部分。这样,您已经可以在 Ubuntu 20.04 上开始使用 Docker

于 2020-04-28T20:11:45.593 回答
0

上述错误是由于命令的不干净副本而发生的。请考虑这一点并再次复制命令以解决错误。它帮助我纠正了同样的错误。

于 2022-01-12T12:08:30.827 回答