分别在容器和主机下执行 date 命令
可以看到,时间是完全不一样的
在运行容器时,挂载 /etc/localtime 目录
docker run -d -v /etc/localtime:/etc/localtime:ro --name git
重点就是: -v /etc/localtime:/etc/localtime:ro
docker cp /etc/localtime [容器ID或名字]:/etc/localtime
若报错,则看这篇文章:https://www.cnblogs.com/poloyy/p/13967565.html