ubuntu18.04 apt 安装docker(通过阿里云源)

1,更新apt库 

sudo apt update

2,以下安装使得允许apt通过HTTPS使用存储库 

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

 3,添加阿里GPG秘钥

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

4,添加阿里docker源 

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

5,更新apt源

sudo apt-get update

 6,安装

sudo apt install -y docker-ce

7,查看版本

docker --version 

你可能感兴趣的:(Linux学习)