在 ubuntu20.04 安装 docker

1、替换清华源

替换 sources.list 里面的内容

sh 复制代码
sudo vim /etc/apt/sources.list
sh 复制代码
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse

# 以下安全更新软件源包含了官方源与镜像站配置,如有需要可自行修改注释切换
deb http://security.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
# deb-src http://security.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse

2、更新包缓存和下载

sh 复制代码
sudo apt update
sh 复制代码
sudo apt upgrade

3、删除存在的 docker

sh 复制代码
sudo apt remove docker docker-engine docker.io containerd runc

查看版本

sh 复制代码
sudo docker --version

查看是否还存在 docker 服务

sh 复制代码
sudo dpkg -l | grep docker

4、安装 docker

安装 docker 依赖库

sh 复制代码
sudo apt install apt-transport-https ca-certificates curl gnupg lsb-release software-properties-common

导入 GPG key

sh 复制代码
sudo curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

添加 docker apt 源

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

安装 docker

sh 复制代码
sudo apt install docker-ce docker-ce-cli containerd.io

5、验证安装

sh 复制代码
sudo docker --version
sh 复制代码
sudo docker run hello-world

6、FAQ

1)导入GPG key失败

本地下载 GPG

sh 复制代码
https://download.docker.com/linux/ubuntu/gpg

添加本地 GPG。注意替换本地路径

sh 复制代码
sudo apt-key add /root/docker/gpg

2)docker run hello-world 失败

可以自己从阿里云获取一个免费的专属地址 https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors

设置 registry mirror

sh 复制代码
sudo mkdir -p /etc/docker
sh 复制代码
sudo tee /etc/docker/daemon.json <<-'EOF'
{
  "registry-mirrors": ["https://w1m3bf6y.mirror.aliyuncs.com"]
}
EOF

重启 docker 服务

sh 复制代码
sudo systemctl restart docker

或者

sh 复制代码
service docker restart
相关推荐
宇钶宇夕几秒前
CoDeSys入门实战一起学习(十):CoDeSys库文件详解——从零搭建CoDeSys自定义库
运维·自动化·软件工程
Pth_you2 分钟前
Uptime Kuma安装/定时通知脚本
linux·运维·安全
leo03084 分钟前
Ubuntu (NVIDIA Jetson) 开启 Wi-Fi 后系统高延迟、Ping 不通甚至硬死机排查全过程
linux·运维·ubuntu
Ha_To5 分钟前
2026.1.16 Linux磁盘实验
linux·运维·服务器
AIGCExplore6 分钟前
Docker环境配置步骤
docker·容器·eureka
2501_941982057 分钟前
企业微信自动化:精准推送技术揭秘
运维·自动化·企业微信
历程里程碑10 分钟前
Linux 1 指令(1)入门:6大基础指令详解
linux·运维·服务器·c语言·开发语言·数据结构·c++
egoist202312 分钟前
[linux仓库]线程池[线程·玖]
linux·运维·服务器·线程池
zwjapple14 分钟前
windows系统docker的mysql端口被占用解决方案
docker·云原生·eureka
CV_J7 小时前
安装kibana
java·elasticsearch·spring cloud·docker·容器