You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
242 B
7 lines
242 B
6 years ago
|
FROM mysql:5.7.25
|
||
|
|
||
|
# Copy mysql config
|
||
|
COPY ./docker/my-dojo/mysql/mysql-dojo.cnf /etc/mysql/conf.d/mysql-dojo.cnf
|
||
|
|
||
|
# Copy content of mysql scripts into /docker-entrypoint-initdb.d
|
||
|
COPY ./db-scripts/ /docker-entrypoint-initdb.d
|