Skip to content

Instantly share code, notes, and snippets.

@brandon-braner
Created June 19, 2025 13:59
Show Gist options
  • Save brandon-braner/13939883307b648f559764c019abe6d1 to your computer and use it in GitHub Desktop.
Save brandon-braner/13939883307b648f559764c019abe6d1 to your computer and use it in GitHub Desktop.
Qdrant Docker Compose
services:
qdrant:
image: qdrant/qdrant:v1.7.0
container_name: qdrant
ports:
- "6333:6333"
- "6334:6334" # HTTP API port
- "6335:6335" # gRPC Port
- "6330:6330/tcp" # Debug port
volumes:
- qdrant_data:/qdrant/storage
networks:
- backend
healthcheck:
test: ["CMD", "wget", "-q", "-O-", "--spno", "http://localhost:6334"]
interval: 10s
timeout: 5s
retries: 3
volumes:
qdrant_data:
networks:
backend:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment