20 lines
659 B
Docker
20 lines
659 B
Docker
FROM mysql:5.6.37
|
|
|
|
ENV MYSQL_ALLOW_EMPTY_PASSWORD yes
|
|
|
|
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 localDB06Views2008.sql /docker-entrypoint-initdb.d
|
|
COPY localDB07ViewsVn.sql /docker-entrypoint-initdb.d
|
|
COPY localDB08OthersViews.sql /docker-entrypoint-initdb.d
|
|
COPY localDB09Inserts.sql /docker-entrypoint-initdb.d
|
|
|
|
RUN chmod -R 755 /docker-entrypoint-initdb.d
|
|
|
|
CMD ["mysqld"]
|
|
|
|
EXPOSE 3306
|