ubuntu安装docker
ubuntu下快速安装docker的步骤
ubuntu安装docker
安装curl
apt-get curl
HTTPS存储库
apt-get install apt-transport-https ca-certificates curl software-properties-common
添加docker中科大源GPG密钥
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
设定稳定存储库
sudo add-apt-repository “deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu $(lsb_release -cs) stable”
更新apt资源包,进行docker ce安装
apt-get update
apt-get -y install docker-ce
ubuntu安装docker