Skip to content

Commit

Permalink
Merge branch 'release/1.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoshuaixing committed Aug 28, 2019
2 parents cfca4b8 + 79d4a7a commit c83a07e
Show file tree
Hide file tree
Showing 6 changed files with 341 additions and 60 deletions.
31 changes: 31 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,35 @@ RABBITMQ_HOST_PORT_2=15672
RABBITMQ_DEFAULT_USER=admin
RABBITMQ_DEFAULT_PASS=123456

############### phpMyAdmin ###############
PHPMYADMIN_HOST_PORT=8007
PMA_HOST=mysql
PMA_PORT=3306
PMA_ARBITRARY=1

############### redisMyAdmin ###############
REDISMYADMIN_HOST_PORT=8009
REDIS_1_HOST=redis
REDIS_1_NAME=redis_1
REDIS_1_PORT=6379
REDIS_1_AUTH=
REDIS_2_HOST=192.168.10.25
REDIS_2_NAME=redis_2
REDIS_2_PORT=6379
REDIS_2_AUTH=
ADMIN_USER=
ADMIN_PASS=

############### AdminMongo ###############
ADMINMONGO_HOST_PORT=8011
ADMINMONGO_HOST=0.0.0.0
ADMINMONGO_DB_HOST=mongodb
ADMINMONGO_DB_PORT=27017

############### Gogs ###############
GOGS_HOST_PORT_1=8013
GOGS_HOST_PORT_2=10022
GOGS_DATA_DIR=./data/gogs/data
GOGS_APP_DIR=./data/gogs/app


73 changes: 14 additions & 59 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,28 @@

最近更新:

2019-08-28 mysql管理工具phpmyadmin

2019-08-26 增加php7.1、php7.3、rabbitmq队列服务

2019-08-22 超级好用的接口管理工具Yapi

2019-08-19 docker可视化管理工具portainer

## dnnmmp是什么?
  它是基于docker的开发者集成环境,包含丰富的软件,但它是未来开发者的趋势,因为基于docker,使你本机电脑有云开发的效果。
一键安装所有程序,或者单独使用某个程序;方便版本切换,因为它是基于docker,所以一点也不影响本机环境,让程序员的整个生涯都不再需要为环境困扰。
前端、服务端、运维可以直接使用,效率提高非常多。

## 目前包含的软件
0. Yapi : 接口管理工具
1. Node.js : 建议所有开发者学习的语言
2. PHP : 世界上最好的语言
3. Mysql : 数据库
4. MongoDB : 数据库
5. Redis : 数据库
6. Nginx : 服务器
7. Portainer : docker管理工具
8. rabbitmq : 队列服务
1. Yapi : 接口管理工具
2. Node.js : 建议所有开发者学习的语言
3. PHP : 世界上最好的语言
4. Mysql : 数据库
5. MongoDB : 数据库
6. Redis : 数据库
7. Nginx : 服务器
8. Portainer : docker管理工具
9. rabbitmq : 队列服务
10. PhpMyAdmin :mysql管理工具

## 特性
>1.使用对象:**前端****服务端****运维**
Expand Down Expand Up @@ -51,52 +52,6 @@

[点击:GitHub](https://github.com/wallace5303/dnnmmp)


## 附录1:目录结构
```
/
├── composer Composer配置与缓存
├── config 配置文件
│   ├── mongodb mongodb
│   ├── Dockerfile Dockerfile文件
│   ├── mysql mysql
│   ├── Dockerfile
│   ├── mysql.cnf mysql配置文件
│   ├── nginx nginx
│   ├── conf.d
│   ├── certs 秘钥
│   ├── localhost_https.conf https虚拟主机
│   ├── localhost.conf 虚拟主机
│   ├── Dockerfile
│   ├── nginx.conf nginx配置
│   ├── node node
│   ├── Dockerfile
│   ├── php php
│   ├── extensions 扩展及脚本
│   ├── install.sh 基础安装脚本
│   ├── php56.sh php5.6扩展安装脚本
│   ├── php72.sh php7.2扩展安装脚本
│   ├── Dockerfile
│   ├── php-fpm.conf php-fpm配置文件
│   ├── php.ini php.ini配置文件
│   ├── redis redis
│   ├── Dockerfile
│   ├── redis.conf redis配置文件
│   ├── yapi yapi
│   ├── Dockerfile
│   ├── config.json yapi配置文件
│   ├── entrypoint.sh 脚本
│   ├── wait-for-it.sh 脚本
├── mongo mongodb数据目录
├── log 日志目录
├── mysql MySQL数据目录
├── portainer_data portainer
├── docker-compose.yml Docker 服务配置
├── docker-compose-manage.yml 管理服务
├── .env 环境配置
└── www 代码目录
```


## 附录2:收集的程序员常用网站

## 附录1:收集的程序员常用网站
- [程序员常用网站](http://www.kaka996.com/web/dh/dev)
2 changes: 2 additions & 0 deletions data/gogs/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
2 changes: 2 additions & 0 deletions data/gogs/data/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
Loading

0 comments on commit c83a07e

Please sign in to comment.