Initial commit

This commit is contained in:
2026-03-07 11:07:45 -03:00
commit 9d523f8b6a
65 changed files with 17311 additions and 0 deletions

34
docker-compose.yml Normal file
View File

@@ -0,0 +1,34 @@
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: