diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index e447225b..e4a7ced1 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -192,14 +192,17 @@ The NGINX Log file is stored in the `logs/nginx` directory. However to view the logs of all the other containers (MySQL, PHP-FPM,...) you can run this: ```bash -docker logs {container-name} +docker-compose logs {container-name} +``` + +```bash +docker-compose logs -f {container-name} ``` More [options](https://docs.docker.com/compose/reference/logs/) -```bash -docker logs -f {container-name} -``` + + @@ -1057,6 +1060,19 @@ The default username and password for the root MySQL user are `root` and `root ` +
+ +## Create Multiple Databases (MySQL) + +Create `createdb.sql` from `mysql/docker-entrypoint-initdb.d/createdb.sql.example` in `mysql/docker-entrypoint-initdb.d/*` and add your SQL syntax as follow: + +```sql +CREATE DATABASE IF NOT EXISTS `your_db_1` COLLATE 'utf8_general_ci' ; +GRANT ALL ON `your_db_1`.* TO 'mysql_user'@'%' ; +``` + + +
diff --git a/mysql/docker-entrypoint-initdb.d/createdb.sql.example b/mysql/docker-entrypoint-initdb.d/createdb.sql.example index 2b7c5157..55679859 100644 --- a/mysql/docker-entrypoint-initdb.d/createdb.sql.example +++ b/mysql/docker-entrypoint-initdb.d/createdb.sql.example @@ -1,20 +1,20 @@ -### -### Copy createdb.sql.example to createdb.sql -### then uncomment then set database name and username to create you need databases +# +# Copy createdb.sql.example to createdb.sql +# then uncomment then set database name and username to create you need databases # # example: .env MYSQL_USER=appuser and need db name is myshop_db # # CREATE DATABASE IF NOT EXISTS `myshop_db` ; # GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ; # -### -### this sql script is auto run when mysql container start and $DATA_SAVE_PATH/mysql not exists. -### -### if your $DATA_SAVE_PATH/mysql is exists and you do not want to delete it, you can run by manual execution: -### -### docker-compose exec mysql bash -### mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql -### +# +# this sql script will auto run when the mysql container starts and the $DATA_SAVE_PATH/mysql not found. +# +# if your $DATA_SAVE_PATH/mysql exists and you do not want to delete it, you can run by manual execution: +# +# docker-compose exec mysql bash +# mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql +# #CREATE DATABASE IF NOT EXISTS `dev_db_1` COLLATE 'utf8_general_ci' ; #GRANT ALL ON `dev_db_1`.* TO 'default'@'%' ;