feat: 更新docker-compose.yml和GitHub工作流,移除sqlite-web服务,调整chat2db端口,优化Docker镜像构建流程,合并AMD64和ARM64构建步骤。
This commit is contained in:
@@ -17,7 +17,6 @@ services:
|
||||
restart: always
|
||||
networks:
|
||||
- maim_bot
|
||||
|
||||
core:
|
||||
container_name: maim-bot-core
|
||||
#### prod ####
|
||||
@@ -40,7 +39,6 @@ services:
|
||||
restart: always
|
||||
networks:
|
||||
- maim_bot
|
||||
|
||||
napcat:
|
||||
environment:
|
||||
- NAPCAT_UID=1000
|
||||
@@ -57,20 +55,28 @@ services:
|
||||
image: mlikiowa/napcat-docker:latest
|
||||
networks:
|
||||
- maim_bot
|
||||
|
||||
sqlite-web:
|
||||
image: coleifer/sqlite-web
|
||||
container_name: sqlite-web
|
||||
# sqlite-web:
|
||||
# image: coleifer/sqlite-web
|
||||
# container_name: sqlite-web
|
||||
# restart: always
|
||||
# ports:
|
||||
# - "8120:8080"
|
||||
# volumes:
|
||||
# - ./data/MaiMBot:/data/MaiMBot
|
||||
# environment:
|
||||
# - SQLITE_DATABASE=MaiMBot/MaiBot.db # 你的数据库文件
|
||||
# networks:
|
||||
# - maim_bot
|
||||
chat2db:
|
||||
image: chat2db/chat2db:latest
|
||||
container_name: maim-bot-chat2db
|
||||
restart: always
|
||||
ports:
|
||||
- "8120:8080"
|
||||
- "10824:10824"
|
||||
volumes:
|
||||
- ./data/MaiMBot:/data/MaiMBot
|
||||
environment:
|
||||
- SQLITE_DATABASE=MaiMBot/MaiBot.db # 你的数据库文件
|
||||
networks:
|
||||
- maim_bot
|
||||
|
||||
networks:
|
||||
maim_bot:
|
||||
driver: bridge
|
||||
|
||||
Reference in New Issue
Block a user