mirror of
https://gitee.com/dromara/orion-visor.git
synced 2026-06-16 03:11:50 +08:00
9 lines
186 B
Docker
9 lines
186 B
Docker
FROM --platform=$TARGETPLATFORM influxdb:2
|
|
|
|
# 系统时区
|
|
ARG TZ=Asia/Shanghai
|
|
|
|
# 设置时区
|
|
RUN ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime && \
|
|
echo "${TZ}" > /etc/timezone
|