基于Centos7.5搭建Docker环境
docker很火,基于容器化技术,实现一次编译到运行。实现运行环境+服务的一键式打包!
00、部署环境
centos7.5(基于vmware搭建的测试环境,可以跟互联网交互,桥接方式联网)
docker-ce 18.x
[root@mvp-dd ~]# uname -a
Linux mvp-dd 3.10.0-862.el7.x86_64 #1 SMP Fri Apr 20 16:44:24 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
[root@mvp-dd ~]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
01、添加yum源
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo //docker-ce源
yum-config-manager --add-repo http://mirrors.aliyun.com/repo/Centos-7.repo //centos7源
yum makecache fast //生成缓存
02、安装docker-ce
yum install -y yum-utils device-mapper-persistent-data lvm2
yum -y install docker-ce
注意:yum list docker-ce.x86_64 --showduplicates | sort -r //查看docker版本列表
systemctl start docker //启动docker
systemctl enable docker
03、设置国内docker源加速
https://dev.aliyun.com //注册阿里云账户
镜像加速器 //根据相应系统,添加配置即可!