设置容器的时区,需要在docker-compose.yml
中添加
environment:
- TZ=Asia/Shanghai
而数据库的时区设置
和编码设置
就可以,当然也可以在mysql服务既设置容器时区,又设置数据库时区。不冲突。
command: [
'--character-set-server=utf8mb4',
'--collation-server=utf8mb4_unicode_ci',
'--default-time-zone=+8:00'
]
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:关于容器时区设置和mysql数据库自己的时区设置