21 lines
672 B
Docker
21 lines
672 B
Docker
FROM mysql:5.6.37
|
|
|
|
ENV MYSQL_ALLOW_EMPTY_PASSWORD yes
|
|
ENV TZ GMT-1
|
|
|
|
COPY localDB01StructureAccount.sql /docker-entrypoint-initdb.d
|
|
COPY localDB02StructureVn2008.sql /docker-entrypoint-initdb.d
|
|
COPY localDB03StructureVn.sql /docker-entrypoint-initdb.d
|
|
COPY localDB04StructureOthersDB.sql /docker-entrypoint-initdb.d
|
|
COPY localDB05StructureUtil.sql /docker-entrypoint-initdb.d
|
|
COPY localDB06ViewsVn.sql /docker-entrypoint-initdb.d
|
|
COPY localDB07OthersViews.sql /docker-entrypoint-initdb.d
|
|
COPY localDB08Views2008.sql /docker-entrypoint-initdb.d
|
|
COPY localDB09Inserts.sql /docker-entrypoint-initdb.d
|
|
|
|
RUN chmod -R 755 /docker-entrypoint-initdb.d
|
|
|
|
CMD ["mysqld"]
|
|
|
|
EXPOSE 3306
|