Jolly

Linux各发行版安装docker教程
docker是当下十分流行的容器,因为其部署简单而使用广泛,不同的linux发行版安装docker的步骤操作是不一样的。
扫描右侧二维码阅读全文
03
2019/09

Linux各发行版安装docker教程

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
Last modification:November 26th, 2019 at 11:08 am
如果觉得我的文章对你有用,请随意赞赏

Leave a Comment

🌓