docs: update README/INTERNALS for import feature, harden .gitignore
This commit is contained in:
25
docker-compose.user.yml
Normal file
25
docker-compose.user.yml
Normal 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
|
||||
Reference in New Issue
Block a user