8 lines
101 B
Docker
8 lines
101 B
Docker
FROM mysql:5.7
|
|
|
|
# Starting scripts
|
|
ADD . /docker-entrypoint-initdb.d
|
|
|
|
# Config
|
|
ADD my.cnf /etc/mysql
|