docker是当下十分流行的容器,因为其部署简单而使用广泛,不同的linux发行版安装docker的步骤操作是不一样的。
Centos
1.先移除旧版本docker文件
yum remove docker
docker-client
docker-client-latest
docker-common
docker-latest
docker-latest-logrotate
docker-logrotate
docker-engine
2.安装必要依赖
yum install -y yum-utils
device-mapper-persistent-data
lvm2
3.设置docker稳定版文件
yum-config-manager
--add-repo
https://download.docker.com/linux/centos/docker-ce.repo
4.安装docker社区版
yum install docker-ce docker-ce-cli containerd.io
5.启动docker
systemctl start docker
6.测试
docker run hello-world
Debian
1.先移除旧版本docker文件
apt-get remove docker docker-engine docker.io containerd runc
2.更新文件
apt-get update
3.安装必要依赖
apt-get install
apt-transport-https
ca-certificates
curl
gnupg2
software-properties-common
4.设置docker稳定版文件
add-apt-repository
"deb [arch=amd64] https://download.docker.com/linux/debian
$(lsb_release -cs)
stable"
5.安装docker社区版
apt-get install docker-ce docker-ce-cli containerd.io
6.测试
docker run hello-world
Ubantu
1.先移除旧版本docker文件
apt-get remove docker docker-engine docker.io containerd runc
2.更新文件
apt-get update
3.安装必要依赖
apt-get install
apt-transport-https
ca-certificates
curl
gnupg-agent
software-properties-common
4.设置docker稳定版文件
add-apt-repository
"deb [arch=amd64] https://download.docker.com/linux/ubuntu
$(lsb_release -cs)
stable"
5.安装docker社区版
apt-get install docker-ce docker-ce-cli containerd.io
6.测试
docker run hello-world
版权属于:Jolly
本文链接:https://totoro.site/index.php/archives/65/
关于转载:原创文章,禁止转载