Ubuntu18安装指定版本docker-ce(实测可用)

2019-11-28  本文已影响0人  六分

网速搜了一大堆更换国内源的没用,终于找到了一个可用了的 原地址

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
sudo apt update
sudo apt install apt-transport-https ca-certificates software-properties-common curl
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"
sudo apt update
apt-cache madison docker-ce  //查看版本
sudo apt install docker-ce=版本号
sudo apt-get install docker-ce=18.06.1~ce~3-0~ubuntu
sudo systemctl enable docker
sudo systemctl start docker
sudo docker run hello-world
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker     #更新用户组
docker ps    #测试docker命令是否可以使用sudo正常使用
上一篇下一篇

猜你喜欢

热点阅读