Files
orion-visor/docker/mysql/Dockerfile

19 lines
511 B
Docker
Raw Normal View History

2025-07-10 14:50:36 +08:00
FROM --platform=$TARGETPLATFORM mysql:8.4.5
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/
2025-07-10 14:50:36 +08:00
# 心跳检测
HEALTHCHECK --interval=10s --timeout=3s --start-period=3s --retries=3 \
CMD mysqladmin ping -h localhost -u root --password=${MYSQL_ROOT_PASSWORD} || exit 1