netflix/db/docker-compose.yml
michael 236d1ddbd8 Initial commit: Netflix GraphRAG marketing chatbot
Full-stack application combining LlamaIndex vector search with Neo4j
knowledge graph (GraphRAG) for answering queries about Netflix marketing
materials. Flask/Hypercorn backend with custom ReAct agent, React frontend.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 10:28:33 -06:00

18 lines
388 B
YAML

version: '3'
services:
mongodb:
image: mongo:latest
container_name: mongodb
ports:
- "27017:27017"
# Comment out authentication for local development
# environment:
# MONGO_INITDB_ROOT_USERNAME: netflix
# MONGO_INITDB_ROOT_PASSWORD: netflix
volumes:
- mongodb_data:/data/db
restart: always
volumes:
mongodb_data:
driver: local