composte-hermes.yml aktualisiert
This commit is contained in:
parent
d8b5c40eaa
commit
4a6dab796c
|
|
@ -32,7 +32,7 @@ services:
|
|||
- --served-model-name=qwen3-14b-awq
|
||||
- --enable-auto-tool-choice
|
||||
- --tool-call-parser=hermes
|
||||
- --enable-prefix-caching # 2x RTX 3060 (12 GB)
|
||||
- --enable-prefix-caching
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:8005/health"]
|
||||
interval: 30s
|
||||
|
|
@ -61,7 +61,6 @@ services:
|
|||
environment:
|
||||
- OPENAI_BASE_URL=http://vllm:8005/v1
|
||||
- OPENAI_API_KEY=sk-dummy-key-1234567890
|
||||
- HERMES_WRITE_SAFE_ROOT=/
|
||||
networks:
|
||||
- cortex-net
|
||||
|
||||
|
|
@ -84,6 +83,22 @@ services:
|
|||
networks:
|
||||
- cortex-net
|
||||
|
||||
obsidian-mcp:
|
||||
image: node:20-alpine
|
||||
container_name: cortex-obsidian-mcp
|
||||
restart: unless-stopped
|
||||
working_dir: /app
|
||||
volumes:
|
||||
- /opt/obsidian/vault:/vault
|
||||
- /opt/obsidian/server.js:/app/server.js:ro
|
||||
ports:
|
||||
- "3002:3002"
|
||||
environment:
|
||||
- VAULT_PATH=/vault
|
||||
command: sh -c "npm install express cors body-parser && node /app/server.js"
|
||||
networks:
|
||||
- cortex-net
|
||||
|
||||
networks:
|
||||
cortex-net:
|
||||
driver: bridge
|
||||
Loading…
Reference in New Issue