File size: 320 Bytes
5d05928 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | version: '3.8'
services:
astrbot:
build: .
container_name: astrbot
ports:
- "6185:6185"
- "6199:6199"
volumes:
- ./data:/AstrBot/data
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
restart: unless-stopped
environment:
- TZ=Asia/Shanghai |