标签:inf blank ubunt code 容器 span color targe ase
Docker 容器使用的过程中,可能会遇到的一个问题就是 Docker 容器时间和宿主机时间不同步。造成这个问题的主要原因是宿主机设置了时区,而Docker容器并且设置,导致两者相差8小时。
这里给出两种解决方法:
docker run --name <name> -v /etc/localtime:/etc/localtime ....
# CentOS RUN echo "Asia/shanghai" > /etc/timezone; # Ubuntu RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
这里有 Linux 系统的时区列表 :https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
标签:inf blank ubunt code 容器 span color targe ase
原文地址:https://www.cnblogs.com/tangxuliang/p/9463860.html