29 lines
583 B
YAML
29 lines
583 B
YAML
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"
|
|
|
|
# Simulateur MCP pour l'Inventaire & Config
|
|
mcp-inventory:
|
|
build: ./mcp-simulator
|
|
container_name: ops-gpt-mcp
|
|
volumes:
|
|
- ./data:/app/data:ro
|
|
ports:
|
|
- "8081:8080"
|