19 lines
396 B
Docker
19 lines
396 B
Docker
FROM mysql:5.7
|
|
|
|
VOLUME /data
|
|
|
|
ENV MYSQL_ALLOW_EMPTY_PASSWORD=yes \
|
|
MYSQL_DATABASE=cities \
|
|
MYSQL_USER=shipping \
|
|
MYSQL_PASSWORD=secret
|
|
|
|
# change datadir entry in /etc/mysql/my.cnf
|
|
COPY config.sh /root/
|
|
RUN /root/config.sh
|
|
|
|
COPY scripts/* /docker-entrypoint-initdb.d/
|
|
|
|
#RUN /entrypoint.sh mysqld & while [ ! -f /tmp/finished ]; do sleep 10; done
|
|
#RUN rm /docker-entrypoint-initdb.d/*
|
|
|