CentOS7 安装最新版docker

安装最新版Docker on Centos7

一、INSTALL DOCKER CE社区版

先卸载系统自带的旧版本

$ sudo yum remove docker \

                  docker-common \

                  docker-selinux \

                  docker-engine

二、Install using the repository 安装仓库

1.      安装依赖包:

$ sudo yum install -y yum-utils \
  device-mapper-persistent-data \
  lvm2

2.      安装最新稳定版仓库地址:

 

$ sudo yum-config-manager \
    --add-repo\
    https://download.docker.com/linux/centos/docker-ce.repo

 

3.      可选:安装edge和test版

$ sudo yum-config-manager --enable docker-ce-edge
$ sudo yum-config-manager --enable docker-ce-test
 

三、开始安装

安装最新版docker  ce– 稳定版

$ sudo yum install docker-ce

 

 

接受签名:回y

060A61C5 1B55 8A7F 742B 77AA C52F EB6B 621E 9F35.

四、开始使用docker

1.启动命令

$ sudo systemctl start docker

2.启动hello world

如果是第一次启动,将自动下载hello-world image并运行

$ sudo docker run hello-world

 

 

你可能感兴趣的:(虚拟机,Linux)