This commit is contained in:
Jacquin Antoine
2026-02-21 18:03:42 +01:00
commit f3771534fc
4 changed files with 57 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
services:
chroma-db:
image: chromadb/chroma:latest
container_name: chroma-db
environment:
- IS_PERSISTENT=TRUE
- PERSIST_DIRECTORY=/chroma-data
volumes:
- ./chroma_data:/chroma-data
ports:
- "8000:8000"
chroma-mcp:
build: ./chroma-mcp-sse
container_name: chroma-mcp
depends_on:
- chroma-db
ports:
- "8080:8080"