-
Notifications
You must be signed in to change notification settings - Fork 87
Closed
Labels
Description
scraping and everything else looks like it functions okay. however, when i try to delete the a doc, i get:
{"message":"Failed to remove docs mcp server: Failed to remove version caused by SqliteError: FOREIGN KEY constraint failed"}
only way i can delete docs is if i delete the whole subvolume, which isn't ideal
nixos 25.11
running it in docker v28.4.0
not sure what other info to include
docker-compose:
services:
docs-mcp-server:
image: ghcr.io/arabold/docs-mcp-server:latest
container_name: docs-mcp-server
ports:
- "6280:6280"
volumes:
- ./docs-mcp-data:/data
environment:
- DOCS_MCP_TELEMETRY=false
command: ["--protocol", "http", "--host", "0.0.0.0", "--port", "6280"]
restart: unless-stoppedCopilot