1.查看当前的内核版本
[root@template ~]# uname -r
3.10.0-1160.25.1.el7.x86_64
2.更新yum: yum -y update 可不更
yum -y update:升级所有包同时也升级软件和系统内核;
yum -y upgrade:只升级所有包,不升级软件和系统内核
3.安装需要的软件包, yum-util 提供yum-config-manager功能,另两个是devicemapper驱动依赖
yum install -y yum-utils device-mapper-persistent-data lvm2
yum源:
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
4.安装:
yum install docker-ce
官方地址:https://docs.docker.com/engine/install/centos/
加入自启:
systemctl start docker
systemctl enable docker