Dnnmmp 1.5.0 release, increase phpMyAdmin database management tool

Introduction

dnnmmp, which is based docker developers an integrated environment, contains a wealth of software, the future trend of developers.

New reads as follows:

  • phpMyAdmin database management tool

dnmmp official documents

Currently contains software

  1. Yapi: Interface Management Tools
  2. Node.js: recommended for all developers to learn the language
  3. PHP: the world's best language
  4. Mysql: Database
  5. MongoDB: Database
  6. Redis: Database
  7. Nginx: server
  8. Portainer: docker Management Tools
  9. rabbitmq: Queuing Service
  10. PhpMyAdmin: mysql management tool

Introduction PhpMyAdmin

    PHPMyadmin is a very easy to use database management interface to Web-Base mode architecture on the site hosts  MySQL  database management tool that allows managers available Web interface to manage MySQL database.

Installation steps are as follows:

  1. Build and launch:

    $ cd dnnmmp
    
    # 后台运行
    $ docker-compose up -d phpmyadmin
    
    # 停止
    $ docker-compose stop phpmyadmin
    
    # 删除容器
    $ docker-compose rm phpmyadmin
    
    
     
  2. Access web:

    Access in the browser: http: // localhost: 8007

    Note: Server field fill in the ip address, if installed, please fill out the mysql or dnnmmp_mysql_1 (ie: container NAMES).

  3. Profile Description: .env file

    ############### phpMyAdmin ###############
    PHPMYADMIN_HOST_PORT=8007 # web端口
    PMA_HOST=mysql
    PMA_PORT=3306
    # 是否允许访问其他网络服务,如果改为0,则默认使用本机安装的mysql服务
    PMA_ARBITRARY=1
    
    PMA_VERBOSE= # 定义MySQL服务器的详细名称
    PMA_HOSTS= # 定义逗号分隔的MySQL服务器的地址/主机名列表
    PMA_VERBOSES= # 定义以逗号分隔的MySQL服务器详细名称列表
    PMA_PORTS= # 定义以逗号分隔的MySQL服务器端口列表
    PMA_USER= # 定义用于配置身份验证方法的用户名
    PMA_PASSWORD= # 定义用于配置身份验证方法的用户名
    PMA_ABSOLUTE_URI= # 定义面向用户的URI
    
     

    Check out more variables:

    PhpMyAdmin official documents

Guess you like

Origin www.oschina.net/news/109420/dnnmmp-1-5-0-released