文章目录
先决条件
Linux内核版本高于3.1
开始安装
1.卸载旧版本
linux
yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
2.安装依赖
linux
yum install -y yum-utils
3.切换数据源
使用阿里云源
linux
yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
4.安装Docker
linux
yum install docker-ce
5.启动服务
linux
systemctl start docker
6.查看版本
linux
docker version
能看到版本号代表安装成功
7.查看端口
linux
ps -ef | grep docker
8.测试拉取镜像
linux
docker run hello-world
看到这些信息,代表测试镜像拉取运行成功,Docker完成