Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 381 Bytes

readme.md

File metadata and controls

25 lines (20 loc) · 381 Bytes
  • CentOS7
  • Nginx
  • MariaDB
  • PHP7
  • composer
  • node
$ docker pull centos:7
$ docker pull centos/mariadb
$ docker-compose up -d

# server start
$ docker-compose start web

# bash
$ docker-compose exec web bash

# 外部から接続する場合
# mysql -u root
# GRANT ALL PRIVILEGES ON *.* TO root@gateway WITH GRANT OPTION;

# server stop
$ docker-compose stop web