系统相关
首页 > 系统相关> > Dockerfile中修改ubuntu 18.04时区

Dockerfile中修改ubuntu 18.04时区

作者:互联网

# check now  timezone
$ date -R
Sun, 21 Oct 2018 23:35:04 +0800
 
 
# change timezone to Shanghai if it is wrong
apt update
apt install -y tzdata
 
echo "Asia/Shanghai" > /etc/timezone
rm -f /etc/localtime
# maybe you need to rm -rf  /usr/share/zoneinfo/UTC
dpkg-reconfigure -f noninteractive tzdata
 
#output
Current default time zone: 'Asia/Shanghai'
Local time is now:      Sun Oct 21 22:33:36 CST 2018.
Universal Time is now:  Sun Oct 21 14:33:36 UTC 2018.

标签:21,18.04,Sun,Shanghai,2018,ubuntu,timezone,Dockerfile,Oct
来源: https://www.cnblogs.com/netflix/p/15430523.html