问题描述
在使用 sudo apt-get update
时出现,如下情况
The repository 'https://download.docker.com/linux/ubuntu focal Release' does not have a Release file.
解决办法
(1)使用cd /etc/apt/sources.list.d
转到该目录下;
(2)打开并编辑 docker.list 文件,按如下方式进行修改:
# deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu focal stable
deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu eoan stable
(3)此时使用 sudo apt-get update
会发现该问题得到解决。
来源:https://forums.docker.com/t/cant-install-docker-on-ubuntu-20-04/93058