-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.one.yml
More file actions
56 lines (53 loc) · 1.6 KB
/
Copy pathcompose.one.yml
File metadata and controls
56 lines (53 loc) · 1.6 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
services:
infer:
image: ${FOXMEMORY_INFER_IMAGE}
container_name: foxmemory-infer
ports:
- "8081:8081"
environment:
- OLLAMA_BASE_URL=${OLLAMA_BASE_URL}
- OLLAMA_EMBED_MODEL=${OLLAMA_EMBED_MODEL}
- OLLAMA_CHAT_MODEL=${OLLAMA_CHAT_MODEL}
- INFER_API_KEY=${INFER_API_KEY}
neo4j:
image: neo4j:5-community
container_name: foxmemory-neo4j
ports:
- "7474:7474" # HTTP browser UI
- "7687:7687" # Bolt
environment:
- NEO4J_AUTH=${NEO4J_AUTH:-neo4j/changeme}
volumes:
- foxmemory_neo4j_data:/data
store:
image: ${FOXMEMORY_STORE_IMAGE}
container_name: foxmemory-store
labels:
- com.centurylinklabs.watchtower.enable=true
ports:
- "8082:8082"
- "6333:6333"
environment:
- OPENAI_BASE_URL=${OPENAI_BASE_URL}
- OPENAI_API_KEY=${INFER_API_KEY}
- MEM0_LLM_MODEL=${MEM0_LLM_MODEL}
- MEM0_EMBED_MODEL=${MEM0_EMBED_MODEL}
- QDRANT_HOST=127.0.0.1
- QDRANT_PORT=6333
- QDRANT_COLLECTION=${QDRANT_COLLECTION}
- MEM0_HISTORY_DB_PATH=/tmp/history.db
- QDRANT_STORAGE_PATH=/qdrant/storage
- FOXMEMORY_ANALYTICS_DB_PATH=/qdrant/storage/foxmemory-analytics.db
# Graph memory — leave NEO4J_URL unset to disable
- NEO4J_URL=${NEO4J_URL:-}
- NEO4J_USERNAME=${NEO4J_USERNAME:-neo4j}
- NEO4J_PASSWORD=${NEO4J_PASSWORD:-}
- MEM0_GRAPH_LLM_MODEL=${MEM0_GRAPH_LLM_MODEL:-gpt-4.1-mini}
volumes:
- foxmemory_store_data:/qdrant/storage
depends_on:
- infer
- neo4j
volumes:
foxmemory_store_data:
foxmemory_neo4j_data: