diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 659838829..ebd468685 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -10,6 +10,7 @@ body: - label: "我确认在Issues列表中并无其他人已经建议过相似的功能" required: true - label: "这个新功能可以解决目前存在的某个问题或BUG" + - label: "你已经更新了最新的dev分支,但是你的问题依然没有被解决" - type: textarea attributes: label: 期望的功能描述 diff --git a/docker-compose.yml b/docker-compose.yml index 558949db2..8cfd48562 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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 + driver: bridge \ No newline at end of file