当我关注社区码头我遇到了以下问题:
sudo add-apt-repository \
> "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
> $(lsb_release -cs) \
> stable"
[sudo] password for yogesh:
Hit:1 https://download.docker.com/linux/ubuntu bionic InRelease
Get:2 http://in.archive.ubuntu.com/ubuntu focal InRelease [265 kB]
Ign:3 http://dl.google.com/linux/chrome/deb stable InRelease
Ign:4 https://download.docker.com/linux/ubuntu focal InRelease
Hit:5 http://security.ubuntu.com/ubuntu focal-security InRelease
Hit:6 http://packages.microsoft.com/repos/vscode stable InRelease
Err:7 https://download.docker.com/linux/ubuntu focal Release
404 Not Found [IP: 54.182.0.11 443]
Hit:8 http://dl.google.com/linux/chrome/deb stable Release
Hit:10 http://in.archive.ubuntu.com/ubuntu focal-updates InRelease
Hit:11 http://in.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.
答案1
更新:截至 5 月 15 日凌晨 3 点,Ubuntu Focal 的官方 Docker 存储库已可用,因此您可以关注安装指南在你的 Ubuntu 上启动并运行 Docker。
另一个选择是安装 Ubuntu 提供的 Docker 版本:
sudo apt install docker.io
docker.io
很久以前,人们对此提出了强烈的反对,因为上游(Debian)的软件包太旧了——现在情况已经不同了。对于 Focal 来说,docker.io
目前(2020 年 4 月 24 日)为19.03.8-0ubuntu1
,对于大多数 Docker 工作负载来说,这个数字已经足够新了。
不要docker
误安装 - 它曾经是系统托盘应用程序,现已被 取代gnome-shell-extension-ubuntu-dock
。docker
如果您意外安装了该软件包,可以安全删除。
答案2
发布文件现已可用。遵循 Docker 社区指南。
截至今天 4 月 28 日,Ubuntu 20.04 LTS focus 的发布文件尚不可用。
因此,为了按照指南在 Ubuntu 20.04 LTS 焦点版本上安装 dockerdocker 社区链接
您可以更改以下命令:
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
到
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
bionic \
stable"
我们所做的是使用 bionic(Ubuntu 18.04 LTS)发布文件。
其余命令都正常,并且可以在 20.04 上运行。
还要确保从您的/etc/apt/sources.list如果在安装 docker 之前存在
deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable
答案3
你可以使用单个命令来安装它
sudo apt install docker-compose
答案4
以下步骤可以帮助您:
运行以下命令:
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
运行以下命令打开 /etc/apt/sources.list 文件
sudo nano /etc/apt/sources.list
注释掉以下行:
#deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable
按 Ctrl+o 保存,按 ctrl+x 关闭。
sudo apt update && sudo apt install docker-ce docker-ce-cli containerd.io
运行上述命令将成功安装docker:
您可以验证docker版本以确认是否已安装成功:
docker -v
编辑:
如果您使用的是 AWS EC2,只需运行以下命令,它就会在那里安装 Docker:
sudo apt install docker.io
sudo systemctl enable --now docker