docker的優(yōu)點(diǎn):
1.快速上手新技術(shù),把精力放在業(yè)務(wù)上而非安裝和配置服務(wù)器;
2.快速搭建開發(fā)環(huán)境所需的各種服務(wù)器程序。
1.更新yum
yum update
2.編輯yum源
vim /etc/yum.repos.d/docker.repo
# 輸入如下
[dockerrepo]
name=Docker Repository
baseurl=https://mirrors.tuna.tsinghua.edu.cn/docker/yum/repo/centos7
enabled=1
gpgcheck=1
gpgkey=https://mirrors.tuna.tsinghua.edu.cn/docker/yum/gpg
3.安裝docker
yum install docker-engine
4.啟動(dòng)docker服務(wù)
systemctl start docker.service
5.更改docker倉庫為國內(nèi)倉庫(可自己到dao上自己申請(qǐng)私服倉庫)
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://00b257d9.m.daocloud.io
6.重啟docker
systemctl restart docker.service
以上,完成docker安裝,可以執(zhí)行 docker run hello-world 測(cè)試一下安裝是否成功
安裝docker-compose
yum -y install epel-release
yum install python-pip
pip install --upgrade pip
pip install docker-compose --ignore-installed
本文摘自 :https://blog.51cto.com/u