-
-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
78 lines (73 loc) · 1.96 KB
/
docker-compose.dev.yml
File metadata and controls
78 lines (73 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
services:
chroma:
image: chromadb/chroma:1.5.9
# Tmpfs-mode option for Chroma when used as test fixture (cross-link to #10805)
tmpfs:
- /chroma/chroma
healthcheck:
test: ["CMD-SHELL", "bash -c '</dev/tcp/127.0.0.1/8000'"]
interval: 10s
timeout: 5s
retries: 12
start_period: 60s
networks:
- neo-mcp-network
ports:
- "8000:8000"
kb-server:
build:
context: ../..
dockerfile: ai/deploy/Dockerfile
args:
NEO_SOURCE: local # build the local checkout for dev iteration, not a remote clone
TARGET_SERVER: knowledge-base
environment:
- NEO_TRANSPORT=sse
- NEO_AUTO_SYNC=false
- NEO_KB_AUTO_START_DATABASE=false
- NEO_CHROMA_HOST=chroma
- NEO_CHROMA_PORT=8000
- MCP_HTTP_PORT=3000
- NEO_MEMORY_DB_PATH=/app/.neo-ai-data/sqlite/memory-core-graph.sqlite
volumes:
- ../..:/app
depends_on:
chroma:
condition: service_healthy
networks:
- neo-mcp-network
ports:
- "3000:3000"
mc-server:
build:
context: ../..
dockerfile: ai/deploy/Dockerfile
args:
NEO_SOURCE: local # build the local checkout for dev iteration, not a remote clone
TARGET_SERVER: memory-core
environment:
- NEO_TRANSPORT=sse
- NEO_MC_PRIMARY=false
- NEO_AUTO_SUMMARIZE=false
- NEO_MEM_AUTO_START_DATABASE=false
- NEO_MEM_AUTO_START_INFERENCE=false
- NEO_AUTO_DREAM=false
- NEO_AUTO_GOLDEN_PATH=false
- NEO_REAL_TIME_MEMORY_PARSING=false
- NEO_AUTO_INGEST_FS=false
- NEO_CHROMA_HOST=chroma
- NEO_CHROMA_PORT=8000
- MCP_HTTP_PORT=3001
- NEO_MEMORY_DB_PATH=/app/.neo-ai-data/sqlite/memory-core-graph.sqlite
volumes:
- ../..:/app
depends_on:
chroma:
condition: service_healthy
networks:
- neo-mcp-network
ports:
- "3001:3001"
networks:
neo-mcp-network:
driver: bridge