Merge pull request #917 from bestlong/mysql-create-multiple-database
MySQL container create multiple databases.
This commit is contained in:
commit
0e0dc44a49
@ -194,6 +194,7 @@ services:
|
||||
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
||||
volumes:
|
||||
- ${DATA_SAVE_PATH}/mysql:/var/lib/mysql
|
||||
- ./mysql/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
||||
ports:
|
||||
- "${MYSQL_PORT}:3306"
|
||||
networks:
|
||||
|
1
mysql/docker-entrypoint-initdb.d/.gitignore
vendored
Normal file
1
mysql/docker-entrypoint-initdb.d/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.sql
|
8
mysql/docker-entrypoint-initdb.d/createdb.sql.example
Normal file
8
mysql/docker-entrypoint-initdb.d/createdb.sql.example
Normal file
@ -0,0 +1,8 @@
|
||||
###
|
||||
### Copy createdb.sql.example to createdb.sql
|
||||
### then uncomment and set database name to create you need databases
|
||||
###
|
||||
|
||||
#CREATE DATABASE IF NOT EXISTS `dev_db_1` ;
|
||||
#CREATE DATABASE IF NOT EXISTS `dev_db_2` ;
|
||||
#CREATE DATABASE IF NOT EXISTS `dev_db_3` ;
|
Loading…
Reference in New Issue
Block a user