-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (44 loc) · 983 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (44 loc) · 983 Bytes
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
services:
app:
build: .
command: ["flow-memory", "run", "Explore and report"]
environment:
FLOW_MEMORY_REDIS_URL: redis://redis:6379/0
FLOW_MEMORY_QDRANT_URL: http://qdrant:6333
FLOW_MEMORY_NEO4J_URI: bolt://neo4j:7687
FLOW_MEMORY_OPA_URL: http://opa:8181
depends_on:
- redis
- qdrant
- neo4j
- opa
redis:
image: redis:7-alpine
ports:
- "6379:6379"
qdrant:
image: qdrant/qdrant:v1.9.5
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_storage:/qdrant/storage
neo4j:
image: neo4j:5-community
environment:
NEO4J_AUTH: neo4j/flowmemory
ports:
- "7474:7474"
- "7687:7687"
volumes:
- neo4j_data:/data
opa:
image: openpolicyagent/opa:0.70.0
command: ["run", "--server", "--addr", ":8181", "/policies"]
volumes:
- ./policies:/policies:ro
ports:
- "8181:8181"
volumes:
qdrant_storage:
neo4j_data: