mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-06 03:15:34 +01:00
feat: allow for adding extra databases
Allow for declaring extra databases that should be created when the project is first started. This is done by adding an `extra_databases` key to `database`, containing a list of database names. ```yaml database: type: mariadb version: 10 extra_databases: - tinhat - freshcover ```
This commit is contained in:
parent
692151d26c
commit
4d034d9ba2
4 changed files with 29 additions and 1 deletions
|
@ -82,6 +82,7 @@ services:
|
|||
memory: "${DOCKER_MYSQL_MEMORY:-0}"
|
||||
volumes:
|
||||
- db-data:/var/lib/mysql
|
||||
{{ database.extra_databases is not empty ? '- ./tools/docker/images/database/root/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d' : '' }}
|
||||
env_file:
|
||||
- .env
|
||||
labels:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue