8 lines
134 B
Docker
8 lines
134 B
Docker
FROM mysql
|
|
LABEL authors="abdr-cms"
|
|
|
|
ENV MYSQL_ROOT_PASSWORD='passwordroot'
|
|
|
|
COPY ./init.sql /docker-entrypoint-initdb.d/
|
|
|
|
EXPOSE 3306 |