Created
June 19, 2025 13:59
-
-
Save brandon-braner/13939883307b648f559764c019abe6d1 to your computer and use it in GitHub Desktop.
Qdrant Docker Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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