salix/services/db/Dockerfile

12 lines
239 B
Docker
Raw Normal View History

2017-09-21 10:17:48 +00:00
FROM mysql:5.6.37
2017-03-06 10:44:02 +00:00
2017-09-21 10:17:48 +00:00
ENV MYSQL_ALLOW_EMPTY_PASSWORD yes
2017-03-06 10:44:02 +00:00
2017-10-13 06:53:54 +00:00
COPY localDB01Structure.sql /docker-entrypoint-initdb.d
COPY localDB02Inserts.sql /docker-entrypoint-initdb.d
2017-10-18 04:41:17 +00:00
RUN chmod -R 755 /docker-entrypoint-initdb.d
2017-09-21 10:17:48 +00:00
CMD ["mysqld"]
EXPOSE 3306