mirror of
https://gitee.com/y_project/RuoYi-Cloud.git
synced 2026-01-27 04:01:56 +08:00
8 lines
150 B
Docker
8 lines
150 B
Docker
# 基础镜像
|
|
FROM mysql:5.7
|
|
# author
|
|
LABEL org.opencontainers.image.authors="ruoyi"
|
|
|
|
# 执行sql脚本
|
|
COPY ./db/*.sql /docker-entrypoint-initdb.d/
|