centos7系统中安装dnmp环境流程步骤
顾名思义DNMP(Docker + Nginx/Openresty + MySQL5,8 + PHP5,7,8 + Redis + ElasticSearch + MongoDB + RabbitMQ)
是一款全功能的LNMP一键安装程序,支持Arm CPU。
依赖:
git
docker
docker-compose
dnmp:
https://github.com/yeszao/dnmp
因为我想整一个纯docker的开发环境,所以我专门配置了一个全新的虚拟机安装了一个centos7系统
基础配置
配置静态ip
vi /etc/sysconfig/network-scripts/ifcfg-eth0
/etc/init.d/network restart
配置电脑名称
vi /etc/hostname
更新
yum update
安装docker
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum install docker-ce docker-ce-cli containerd.io
启动
systemctl start docker
开机启动
systemctl enable docker
防火墙关闭,我这为了方便
systemctl stop firewalld
systemctl stop iptables
安装docker-compose
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
添加执行权限
chmod +x /usr/local/bin/docker-compose
配置国内镜像仓库
在/etc/docker/目录中新建daemon.json文件添加加速地址(这地址用自己阿里云账号去仓库找)
{
"registry-mirrors": ["https://ft5scn3rrrrr.mirror.aliyuncs.com"]
}
重载加速信息
systemctl daemon-reload
重启docker
systemctl restart docker
安装dnmp环境
git clone https://github.com/yeszao/dnmp.git
#如果github打不开或超时,换下面的加速镜像
git clone https://github.com.cnpmjs.org/yeszao/dnmp.git
复制配置文件
cd dnmp/
cp env.sample .env
cp docker-compose.sample.yml docker-compose.yml
ll
启动dnmp环境
docker-compose up
这里根据你的电脑配置 网速 gitbub的网速等等原因,大概30分钟左右吧
我是直接到此界面就停住了,算是安装好了,直接访问一下
测试一下直接访问我的dnmp环境的宿主机ip:172.18.1.210
http://172.18.1.210/
后面就是配置项目了
相关文章