提示:请注意信息的时效性,侵删。
官方镜像dockerfile的 时区默认 UTC。更改为更加熟悉的北京时间(东八区 UTC+8)
提示:更改默认时区工具:tzdata
ubuntu作为基础镜像,需要先下载安装tzdata包,默认时区是UTC时区,修改配置文件,并通过dpkg-reconfigure重置时区配置生效。 安装完成之后,为了尽量减少镜像体力,删除安装过程中产生的各种非必要文件。
FROM ubuntu
MAINTAINER fastjrun
ENV TIME_ZONE Asia/Shanghai
RUN sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list \
&& apt-get update \
&& apt-get install -y tzdata \
&& ln -snf /usr/share/zoneinfo/$TIME_ZONE /etc/localtime && echo $TIME_ZONE > /etc/timezone \
&& dpkg-reconfigure -f noninteractive tzdata \
&& apt-get clean \
&& rm -rf /tmp/* /var/cache/* /usr/share/doc/* /usr/share/man/* /var/lib/apt/lists/*
Alphine 先采用apk包管理器来安装tzdata包,然后设置相关配置文件。
FROM alpine
MAINTAINER igitlib
RUN apk add --no-cache tzdata \
&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& echo "Asia/Shanghai" > /etc/timezone \
&& apk del tzdata
相对很简单,只需要添加配置文件即可。
FROM centos
ENV TIME_ZONE Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TIME_ZONE /etc/localtime
Dockerfile设置默认时区
https://blog.51cto.com/cuiyingfeng/4371774
在dockerfile中设置时区_fengfanghuang的博客-CSDN博客_dockerfile 设置时区
https://blog.csdn.net/qq_26572567/article/details/125166288