composte-hermes.yml aktualisiert

This commit is contained in:
Marc Blatter 2026-08-02 12:29:55 +00:00
parent d8b5c40eaa
commit 4a6dab796c
1 changed files with 17 additions and 2 deletions

View File

@ -32,7 +32,7 @@ services:
- --served-model-name=qwen3-14b-awq - --served-model-name=qwen3-14b-awq
- --enable-auto-tool-choice - --enable-auto-tool-choice
- --tool-call-parser=hermes - --tool-call-parser=hermes
- --enable-prefix-caching # 2x RTX 3060 (12 GB) - --enable-prefix-caching
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8005/health"] test: ["CMD", "curl", "-f", "http://localhost:8005/health"]
interval: 30s interval: 30s
@ -61,7 +61,6 @@ services:
environment: environment:
- OPENAI_BASE_URL=http://vllm:8005/v1 - OPENAI_BASE_URL=http://vllm:8005/v1
- OPENAI_API_KEY=sk-dummy-key-1234567890 - OPENAI_API_KEY=sk-dummy-key-1234567890
- HERMES_WRITE_SAFE_ROOT=/
networks: networks:
- cortex-net - cortex-net
@ -84,6 +83,22 @@ services:
networks: networks:
- cortex-net - 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: networks:
cortex-net: cortex-net:
driver: bridge driver: bridge