Skip to content

Instantly share code, notes, and snippets.

@cau1k
Created August 1, 2025 11:52
Show Gist options
  • Select an option

  • Save cau1k/d46a15531a2145b201a8e511d9f43d08 to your computer and use it in GitHub Desktop.

Select an option

Save cau1k/d46a15531a2145b201a8e511d9f43d08 to your computer and use it in GitHub Desktop.
i swap between cursor and vscode and noticed some issues so i just spin up two qdrant databases
services:
cursor_qdrant:
image: qdrant/qdrant:latest
container_name: cursor-qdrant-db
restart: unless-stopped
ports:
- "6333:6333"
volumes:
- ./cursor_qdrant_data:/qdrant/storage
vscode_qdrant:
image: qdrant/qdrant:latest
container_name: vscode-qdrant-db
restart: unless-stopped
ports:
- "6334:6333"
volumes:
- ./vscode_qdrant_data:/qdrant/storage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment