问题背景
分别在容器和主机下执行 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
分别在容器和主机下执行 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