基於Centos7.5搭建Docker環境
docker很火,基於容器化技術,實現一次編譯到執行。實現執行環境+服務的一鍵式打包!
00、部署環境
centos7.5(基於vmware搭建的測試環境,可以跟網際網路互動,橋接方式聯網)
docker-ce 18.x
[[email protected] ~]# 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
[[email protected] ~]# 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 //註冊阿里雲賬戶
映象加速器 //根據相應系統,新增配置即可!