mirror of
https://github.com/chillzhuang/SpringBlade.git
synced 2024-11-11 04:59:29 +08:00
9 lines
415 B
Docker
9 lines
415 B
Docker
|
FROM mysql:5.7.26
|
||
|
ADD my.cnf /etc/mysql/conf.d/my.cnf
|
||
|
COPY blade-saber-mysql.sql /docker-entrypoint-initdb.d/blade-saber-mysql.sql
|
||
|
# COPY blade-sword-mysql.sql /docker-entrypoint-initdb.d/blade-sword-mysql.sql
|
||
|
# COPY seata_order.sql /docker-entrypoint-initdb.d/seata_order.sql
|
||
|
# COPY seata_storage.sql /docker-entrypoint-initdb.d/seata_storage.sql
|
||
|
# COPY seata.sql /docker-entrypoint-initdb.d/seata.sql
|
||
|
EXPOSE 3306
|