英文:
How to Change Timezone of scrapydweb?
问题
我刚刚在我的系统中安装了scrapydweb,我的问题是我无法更改时区。
默认时区是UTC+00:00,我想将其更改为UTC+03:30。
我该如何做到这一点?
我已经将我的Linux服务器的时区更改为Asia/Tehran。
但不幸的是,这个问题仍然没有解决。
英文:
I just Install scrapydweb in my system and my problem is I can't change the Timezone.
The Default is UTC+00:00 and I want to change it to UTC+03:30.
How Can I do this?
I change the timezone of my Linux server to Asia/Tehran.
But unfortunately this problem still not solved.
答案1
得分: 1
将以下代码插入Docker Compose,然后重新启动构建。
environment:
- TZ=Asia/Tehran
英文:
Insert the following code into Docker Compose and then start the build again.
environment:
- TZ=Asia/Tehran
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论