CoolFace
Apppublic

salim0986/graph-bug-ai

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes
docker-compose.yml34 linesDownload Raw Back to root
1version: '3.8'2 3services:4  # 1. The Graph Database (Logical Brain)5  neo4j:6    image: neo4j:5.15.07    container_name: graph_bug_neo4j8    ports:9      - "7474:7474" # HTTP Console (Browser)10      - "7687:7687" # Bolt Protocol (Python connects here)11    environment:12      - NEO4J_AUTH=neo4j/graphbug123  # User: neo4j, Pass: graphbug12313      # Optimize for development (uses less RAM)14      - NEO4J_dbms_memory_pagecache_size=512M15      - NEO4J_dbms_memory_heap_initial__size=512M16    volumes:17      - ./data/neo4j:/data18 19  # 2. The Vector Database (Intuitive Brain)20  qdrant:21    image: qdrant/qdrant:latest22    container_name: graph_bug_qdrant23    ports:24      - "6333:6333" # API & Dashboard25    volumes:26      - ./data/qdrant:/qdrant/storage27 28  # (Optional) 3. Python Service Placeholder29  # This is where your ingestion script will eventually run30  # worker:31  #   build: .32  #   depends_on:33  #     - neo4j34  #     - qdrant