Skip to content

Instantly share code, notes, and snippets.

@catrielmuller
Created July 2, 2025 20:07
Show Gist options
  • Save catrielmuller/5d22604ef7cad38469a4de30f1d4108d to your computer and use it in GitHub Desktop.
Save catrielmuller/5d22604ef7cad38469a4de30f1d4108d to your computer and use it in GitHub Desktop.
Basic Qdrant Docker compose
services:
qdrant:
image: qdrant/qdrant:latest
restart: always
container_name: qdrant
ports:
- 6333:6333
- 6334:6334
expose:
- 6333
- 6334
- 6335
configs:
- source: qdrant_config
target: /qdrant/config/production.yaml
volumes:
- ./qdrant_data:/qdrant/storage
configs:
qdrant_config:
content: |
log_level: INFO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment