24 lines
455 B
YAML
24 lines
455 B
YAML
services:
|
|
mongo:
|
|
image: mongo:latest
|
|
container_name: helia-mongo
|
|
ports:
|
|
- "27017:27017"
|
|
environment:
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
MONGO_INITDB_ROOT_PASSWORD: password
|
|
volumes:
|
|
- mongo_data:/data/db
|
|
|
|
qdrant:
|
|
image: qdrant/qdrant:latest
|
|
container_name: helia-qdrant
|
|
ports:
|
|
- "6333:6333"
|
|
- "6334:6334"
|
|
volumes:
|
|
- qdrant_storage:/qdrant/storage
|
|
|
|
volumes:
|
|
qdrant_storage:
|