Docker容器时间与宿主机不一致?3个解决方案

Posted 琦彦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker容器时间与宿主机不一致?3个解决方案相关的知识,希望对你有一定的参考价值。

目录

前言

更新历史

问题描述

解决方案

docker run 添加时间参数

Dockerfile解决方案

docker-compose解决方案

宿主机直接执行命令给某个容器同步时间

异常问题

Docker挂载/etc/timezone报错

问题现象


​​​​​​​

前言

如果在启动Docker容器的过程中没有单独配置localtime,很可能造成Docker容器时间与主机时间不一致的情况,比如UTC和CST相差8小时,换句话来说就是容器时间与北京时间相差8个小时。


问题描述

问题:容器时间与北京时间相差8个小时

# 查看主机时间
[root@localhost ~]# date
2020年07月27日 星期三 22:42:44 CST

# 查看容器时间
# docker exec -it <containerid> /bin/sh
root@b43340ecf5ef:/# date
Wed Jul 27 14:43:31 UTC 2020

原因:宿主机设置了时区,而Docker容器并没有设置,导致两者相差8小时

可以发现,他们相隔了8小时

CST应该是指(China Shanghai Time,东八区时间)
UTC应该是指(Coordinated Universal Time,标准时间)
所以,这2个时间实际上应该相差8个小时

所以,必须统一两者的时区

解决方案

docker run 添加时间参数

-v /etc/localtime:/etc/localtime

# 实例1
docker run -p 3306:3306 --name mysql -v /etc/localtime:/etc/localtime

# 实例2
docker run \\
    --detach \\
    --restart always \\
    --name 'scribe' \\
    --publish 11315:11315 \\
    --mount type=bind,source=/data/gop/,destination=/data/gop/,consistency=consistent \\
    -v /etc/localtime:/etc/localtime \\
    wsgzao/facebook-scribe

Dockerfile解决方案

# 方法1
# 添加时区环境变量,亚洲,上海
ENV TimeZone=Asia/Shanghai
# 使用软连接,并且将时区配置覆盖/etc/timezone
RUN ln -snf /usr/share/zoneinfo/$TimeZone /etc/localtime && echo $TimeZone > /etc/timezone

# 方法2
# CentOS
RUN echo "Asia/shanghai" > /etc/timezone
# Ubuntu
RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

docker-compose解决方案

#第一种方式(推荐):
environment:
  TZ: Asia/Shanghai
  
#第二种方式:
environment:
  SET_CONTAINER_TIMEZONE=true
  CONTAINER_TIMEZONE=Asia/Shanghai

#第三种方式:
volumes:
  - /etc/timezone:/etc/timezone
  - /etc/localtime:/etc/localtime

宿主机直接执行命令给某个容器同步时间

# 方法1:直接在宿主机操作
docker cp /etc/localtime 【容器ID或者NAME】:/etc/localtime
docker cp -L /usr/share/zoneinfo/Asia/Shanghai 【容器ID或者NAME】:/etc/localtime

# 方法2:登录容器同步时区timezone
ln -sf /usr/share/zoneinfo/Asia/Singapore /etc/localtime

在完成后,再通过date命令进行查看当前时间
但是,在容器中运行的程序的时间不一定能更新过来,比如在容器运行的mysql服务,在更新时间后,通过sql查看mysql的时间

select now() from dual;

可以发现,时间并没有更改过来
这时候必须要重启mysql服务或者重启docker容器,mysql才能读取到更改过后的时间

异常问题

Docker挂载/etc/timezone报错

问题现象

docker run 添加时间参数 -v /etc/timezone:/etc/timezone

或者

在docker-compose中挂载了


volumes:
  - /etc/timezone:/etc/timezone
  - /etc/localtime:/etc/localtime

出现了报错信息 

ERROR: for mysql  Cannot start service mysql: OCI runtime create failed: 

container_linux.go:370: starting container process caused: process_linux.go:459:

 container init caused: rootfs_linux.go:59: mounting "/etc/timezone" to rootfs at "/var/lib/docker/overlay2/5f3d4c825cbbd4b0bb5359c97021e0bfd9ebff887057d6e9da427ebf5c4a3dd1/merged/etc/timezone" 

caused: not a directory: unknown: Are you trying to mount a directory onto a file (or vice-versa)? Check if the specified host path exists and is the expected type

ERROR: Encountered errors while bringing up the project.

问题解决

原因是centos7.6中/etc/timezone是一个文件夹,而不是一个文件

因此

执行如下命令:
 
echo 'Asia/Shanghai' > /etc/timezone/timezone
 

然后

docker run 添加时间参数 -v /etc/timezone/timezone:/etc/timezone

或者

在docker-compose中挂载了


volumes:
  -/etc/timezone/timezone:/etc/timezone
  - /etc/localtime:/etc/localtime

以上是关于Docker容器时间与宿主机不一致?3个解决方案的主要内容,如果未能解决你的问题,请参考以下文章

docker容器时间不对及java程序时间不对解决

Docker容器与宿主机时间同步解决方案

docker 解决容器时区时间不一致

Docker容器时间与宿主机时间不一致

解决Docker容器时区不一致的问题

DOCKER 容器和主机上的运行时内核参数不一致