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

10 lines
205 B
Docker

FROM nginx:1.14
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \
&& echo ${TZ} > /etc/timezone
VOLUME ["/etc/nginx/conf.d", "/var/www/html", "/var/log/nginx"]
EXPOSE 6379