35 lines
882 B
YAML
35 lines
882 B
YAML
services:
|
|
memgraph:
|
|
image: memgraph/memgraph-platform:latest
|
|
container_name: suplementos-memgraph
|
|
ports:
|
|
- "7687:7687" # Bolt (neo4j-driver connects here)
|
|
- "7444:7444" # Memgraph Lab UI
|
|
- "3000:3000" # Memgraph Lab web UI
|
|
volumes:
|
|
- memgraph_data:/var/lib/memgraph
|
|
- memgraph_log:/var/log/memgraph
|
|
- memgraph_etc:/etc/memgraph
|
|
environment:
|
|
- MEMGRAPH_TELEMETRY_ENABLED=false
|
|
restart: unless-stopped
|
|
|
|
qdrant:
|
|
image: qdrant/qdrant:latest
|
|
container_name: suplementos-qdrant
|
|
ports:
|
|
- "6333:6333" # HTTP REST API
|
|
- "6334:6334" # gRPC
|
|
volumes:
|
|
- qdrant_data:/qdrant/storage
|
|
environment:
|
|
- QDRANT__SERVICE__HTTP_PORT=6333
|
|
- QDRANT__SERVICE__GRPC_PORT=6334
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
memgraph_data:
|
|
memgraph_log:
|
|
memgraph_etc:
|
|
qdrant_data:
|