-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (46 loc) · 1.06 KB
/
Copy pathdocker-compose.yml
File metadata and controls
50 lines (46 loc) · 1.06 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
version: '3.8'
services:
neo4j:
image: neo4j:5.15-community
ports:
- "7474:7474" # Browser
- "7687:7687" # Bolt
environment:
NEO4J_AUTH: ${NEO4J_USER}/${NEO4J_PASSWORD}
NEO4J_PLUGINS: '["apoc"]'
volumes:
- neo4j_data:/data
- ./neo4j/logs:/logs
- ./neo4j/import:/import
- ./neo4j/plugins:/plugins
- ./backups:/backups
healthcheck:
test: ["CMD", "cypher-shell", "-u", "neo4j", "-p", "password", "MATCH () RETURN count(*) limit 1"]
interval: 30s
timeout: 10s
retries: 5
restart: unless-stopped
qdrant:
image: qdrant/qdrant:v1.7.4
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_data:/qdrant/storage
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
command: redis-server --appendonly yes
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
volumes:
neo4j_data:
qdrant_data:
redis_data: