Skip to content

Commit

Permalink
Added a docker compose containing mongo and qdrant
Browse files Browse the repository at this point in the history
  • Loading branch information
Werner Oswald committed Mar 4, 2024
1 parent 0a6dbd3 commit 0f2e458
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docker-compose-qdrant.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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_data

configs:
qdrant_config:
content: |
log_level: INFO

0 comments on commit 0f2e458

Please sign in to comment.