1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-14 12:21:27 +08:00
2019-12-13 00:10:10 +08:00

10 lines
157 B
Docker

FROM redis:4.0
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \
&& echo ${TZ} > /etc/timezone
VOLUME ["/data"]
EXPOSE 6379