Created
July 2, 2025 20:07
-
-
Save catrielmuller/5d22604ef7cad38469a4de30f1d4108d to your computer and use it in GitHub Desktop.
Basic 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: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