* fix: update repository references from Soulter/AstrBot to AstrBotDevs/AstrBot across documentation and codebase - Updated README_ja.md to reflect new GitHub repository links. - Modified AstrBotUpdator to download from the new repository. - Changed download URLs in io.py for dashboard releases. - Updated changelogs to point to the new issue links. - Adjusted Docker compose file to reference the new repository. - Updated Vue components in the dashboard to link to the new repository. - Changed main.py to provide the correct download instructions for the new repository. * fix: improve error handling for configId selection in AddNewPlatform component * Update astrbot/core/utils/io.py Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
22 lines
808 B
YAML
22 lines
808 B
YAML
version: '3.8'
|
||
|
||
# 当接入 QQ NapCat 时,请使用这个 compose 文件一键部署: https://github.com/NapNeko/NapCat-Docker/blob/main/compose/astrbot.yml
|
||
|
||
services:
|
||
astrbot:
|
||
image: soulter/astrbot:latest
|
||
container_name: astrbot
|
||
restart: always
|
||
ports: # mappings description: https://github.com/AstrBotDevs/AstrBot/issues/497
|
||
- "6185:6185" # 必选,AstrBot WebUI 端口
|
||
- "6195:6195" # 可选, 企业微信 Webhook 端口
|
||
- "6199:6199" # 可选, QQ 个人号 WebSocket 端口
|
||
- "6196:6196" # 可选, QQ 官方接口 Webhook 端口
|
||
- "11451:11451" # 可选, 微信个人号 Webhook 端口
|
||
environment:
|
||
- TZ=Asia/Shanghai
|
||
volumes:
|
||
- ./data:/AstrBot/data
|
||
# - /etc/timezone:/etc/timezone:ro
|
||
- /etc/localtime:/etc/localtime:ro
|