添加Sqlite Web UI 方便通过Web页面管理数据库中数据

This commit is contained in:
humeng 2026-01-09 16:07:00 +08:00 committed by Wenjie Zhang
parent 828476ef51
commit b87b5513dd
2 changed files with 22 additions and 0 deletions

View File

@ -180,6 +180,17 @@ services:
- app-network
restart: unless-stopped
sqlite-web:
image: coleifer/sqlite-web:latest
container_name: sqlite-web
volumes:
- ./saves/database:/data
ports:
- "9092:8080"
environment:
SQLITE_DATABASE: server.db
restart: unless-stopped
# lastest version: wget https://gcore.jsdelivr.net/gh/opendatalab/MinerU@master/docker/compose.yaml
mineru-vllm-server:
build:

View File

@ -110,6 +110,17 @@
访问
</a-button>
</div>
<div class="service-link-card">
<div class="service-info">
<h4>SQLite Web</h4>
<p>SQLite 数据库管理界面</p>
</div>
<a-button type="default" @click="openLink('http://localhost:9092/')" :icon="h(GlobalOutlined)">
访问
</a-button>
</div>
</div>
</div>
</div>