简介

变更容器时区的三种方式

在Dockerfile中设置镜像时区

# 设定时区
ENV TZ=Asia/Shanghai
# 测试输出
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

创建容器时设置时区

将宿主机与容器的时间进行挂载

-v /etc/localtime:/etc/localtime

进入容器进行设置

  1. 进入容器内:

docker exec -it 容器名 /bin/bash

  1. 设定时区
rm /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime