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 0f2e458 commit 00ee348
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docker-compose-qdrant.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
services:
mongodb:
container_name: mongodb
image: mongo:5.0.10
restart: always
# To secure MongoDB, uncomment and set the following values
# environment:
# - MONGO_INITDB_DATABASE=admin
# - MONGO_INITDB_ROOT_USERNAME=admin
# - MONGO_INITDB_ROOT_PASSWORD=changeme
volumes:
- llmware-mongodb:/data/db
ports:
- '27017:27017'

qdrant:
image: qdrant/qdrant:latest
restart: always
Expand All @@ -16,6 +30,12 @@ services:
volumes:
- qdrant_data:/qdrant_data

volumes:
llmware-mongodb:
driver: local
qdrant_data:
driver: local

configs:
qdrant_config:
content: |
Expand Down

0 comments on commit 00ee348

Please sign in to comment.