首先保证能访问外网
(1)安装包,允许 apt 命令 HTTPS 访问 Docker 源
#apt-get install apt-transport-https ca-certificates curl software-properties-common
(2)添加 Docker 官方的 GPG
#curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
(3)将 Docker 的源添加到 /etc/apt/sources.list
#add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
#cat /etc/apt/sources.list
(4) 安装docker
# apt-get update
#apt-get install docker-ce
注意:网络不好 下载会超时的 导致失败
网络可以的话应该很快就能安装完成
原文地址:https://www.cnblogs.com/lxqr/p/8547094.html
时间: 2024-10-28 22:50:44