You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
389 B
13 lines
389 B
|
1 week ago
|
ARG REDIS_VER
|
||
|
|
|
||
|
|
FROM redis:${REDIS_VER}
|
||
|
|
|
||
|
|
COPY redis.conf /usr/local/etc/redis/redis.conf
|
||
|
|
CMD ["redis-server", "/usr/local/etc/redis/redis.conf"]
|
||
|
|
|
||
|
|
# 设置时区为上海
|
||
|
|
ENV TZ=Asia/Shanghai
|
||
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||
|
|
|
||
|
|
# Ubuntu软件源选择中国的服务器
|
||
|
|
RUN sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
|