docs: update README/INTERNALS for import feature, harden .gitignore

This commit is contained in:
P0luz
2026-04-19 12:09:53 +08:00
parent a09fbfe13a
commit 821546d5de
27 changed files with 5365 additions and 479 deletions

25
docker-compose.user.yml Normal file
View File

@@ -0,0 +1,25 @@
# ============================================================
# Ombre Brain — 用户快速部署版
# User Quick Deploy (pre-built image, no local build needed)
#
# 使用方法 / Usage:
# 1. 创建 .env: echo "OMBRE_API_KEY=your-key" > .env
# 2. 按需修改下面的 volumes 路径
# 3. docker compose -f docker-compose.user.yml up -d
# ============================================================
services:
ombre-brain:
image: p0luz/ombre-brain:latest
container_name: ombre-brain
restart: unless-stopped
ports:
- "8000:8000"
environment:
- OMBRE_API_KEY=${OMBRE_API_KEY}
- OMBRE_TRANSPORT=streamable-http
- OMBRE_BUCKETS_DIR=/data
volumes:
# 改成你的 Obsidian Vault 路径,或保持 ./buckets 用本地目录
# Change to your Obsidian Vault path, or keep ./buckets for local storage
- ./buckets:/data