This commit is contained in:
SengokuCola
2025-06-21 12:11:01 +08:00
2 changed files with 14 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ body:
- label: "我确认在Issues列表中并无其他人已经建议过相似的功能"
required: true
- label: "这个新功能可以解决目前存在的某个问题或BUG"
- label: "你已经更新了最新的dev分支但是你的问题依然没有被解决"
- type: textarea
attributes:
label: 期望的功能描述

View File

@@ -50,6 +50,18 @@ services:
image: mlikiowa/napcat-docker:latest
networks:
- maim_bot
sqlite-web:
image: coleifer/sqlite-web
container_name: sqlite-web
restart: always
ports:
- "8120:8080"
volumes:
- ./data/MaiMBot/MaiBot.db:/data/MaiBot.db
environment:
- SQLITE_DATABASE=MaiBot.db # 你的数据库文件
networks:
- maim_bot
networks:
maim_bot:
driver: bridge