Files
orion-visor/docker/mysql/Dockerfile

15 lines
336 B
Docker
Raw Normal View History

2025-07-02 22:34:28 +08:00
FROM --platform=$BUILDPLATFORM mysql:8.0.28
2025-07-05 01:13:28 +08:00
2024-05-28 13:13:17 +08:00
# 系统时区
ARG TZ=Asia/Shanghai
2025-07-05 01:13:28 +08:00
2024-05-28 13:13:17 +08:00
# 设置时区
RUN ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime && \
2025-07-05 01:13:28 +08:00
echo "${TZ}" > /etc/timezone
2025-07-05 17:44:33 +08:00
# 复制配置文件
COPY ./mysql/my.cnf /etc/mysql/conf.d/my.cnf
2025-07-05 01:13:28 +08:00
2024-05-28 13:13:17 +08:00
# 复制初始化脚本
2025-07-09 16:04:28 +08:00
COPY ./mysql/sql/init-*.sql /docker-entrypoint-initdb.d/