Merge pull request #1050 from king-81/dev

更新docker-compose.yml,新增web端以供更改数据库
pull/1053/head
墨梓柒 2025-06-20 21:34:01 +08:00 committed by GitHub
commit 16fa2b8ec6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 13 additions and 1 deletions

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