-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.graph.yml
More file actions
58 lines (54 loc) · 1.69 KB
/
Copy pathcompose.graph.yml
File metadata and controls
58 lines (54 loc) · 1.69 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
version: "3.9"
services:
qdrant:
image: qdrant/qdrant:latest
container_name: foxmemory-qdrant
restart: unless-stopped
ports:
- "6333:6333"
volumes:
- foxmemory_store_data:/qdrant/storage
neo4j:
image: neo4j:5-community
container_name: foxmemory-neo4j
restart: unless-stopped
ports:
- "7474:7474" # HTTP browser UI
- "7687:7687" # Bolt (used by foxmemory-store)
environment:
NEO4J_AUTH: ${NEO4J_AUTH:-neo4j/changeme}
volumes:
- foxmemory_neo4j_data:/data
store:
image: ${FOXMEMORY_STORE_IMAGE:-docker.io/foxlightfoundation/foxmemory-store:latest}
container_name: foxmemory-store
restart: unless-stopped
labels:
- com.centurylinklabs.watchtower.enable=true
command: ["sh", "-lc", "cd /tmp && node /app/dist/index.js"]
ports:
- "8082:8082"
environment:
OPENAI_BASE_URL: ${OPENAI_BASE_URL}
OPENAI_API_KEY: ${OPENAI_API_KEY}
MEM0_LLM_MODEL: ${MEM0_LLM_MODEL:-gpt-4.1-nano}
MEM0_EMBED_MODEL: ${MEM0_EMBED_MODEL:-text-embedding-3-small}
QDRANT_HOST: qdrant
QDRANT_PORT: "6333"
QDRANT_COLLECTION: ${QDRANT_COLLECTION:-foxmemory}
MEM0_HISTORY_DB_PATH: /tmp/history.db
FOXMEMORY_ANALYTICS_DB_PATH: /data/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_analytics_data:/data
depends_on:
- qdrant
- neo4j
volumes:
foxmemory_store_data:
foxmemory_neo4j_data:
foxmemory_analytics_data: