docker | ubuntu 使用阿里云镜像快速安装docker

本文介绍使用阿里云镜像在ubuntu上快速安装Docker CE(Docker CE 是Docker 免费产品的新名称)

step 1 安装必要的一些系统工具

sudo apt-get update
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common

step 2 安装GPG证书

curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

step 3 写入软件源信息

sudo add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"

step 4 更新并安装Docker-CE

sudo apt-get -y update
sudo apt-get -y install docker-ce

step 5 验证docker 安装成功。

 docker --version

执行上面的命令,如果有相关信息输出,表示docker安装成功

你可能感兴趣的:(docker | ubuntu 使用阿里云镜像快速安装docker)