We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 018920e commit f2dae96Copy full SHA for f2dae96
docker-compose.yml
@@ -3,14 +3,17 @@ version: '3.8'
3
services:
4
metro-card-bot:
5
image: ghcr.io/shinku1014/metro-card-bot:${IMAGE_TAG:-latest}
6
- platform: linux/arm64 # 根据您的服务器架构调整: linux/amd64 或 linux/arm64
+ platform: linux/arm64
7
container_name: metro-card-bot
8
restart: unless-stopped
9
env_file:
10
- .env
11
environment:
12
- DATA_FILE=/app/data/cards.json
13
- NODE_ENV=production
14
+ - TZ=Asia/Shanghai
15
+ - LANG=zh_CN.UTF-8
16
+ - LC_TIME=zh_CN.UTF-8
17
volumes:
18
# 持久化数据目录
19
- ./data:/app/data
0 commit comments