forked from vektori-ai/vektori
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (50 loc) · 1.21 KB
/
Copy pathdocker-compose.yml
File metadata and controls
53 lines (50 loc) · 1.21 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
version: "3.8"
services:
postgres:
image: pgvector/pgvector:pg16
environment:
POSTGRES_DB: vektori
POSTGRES_USER: vektori
POSTGRES_PASSWORD: vektori
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
- ./scripts/init.sql:/docker-entrypoint-initdb.d/init.sql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U vektori"]
interval: 5s
timeout: 5s
retries: 5
neo4j:
image: neo4j:5
environment:
NEO4J_AUTH: neo4j/password
NEO4J_PLUGINS: '["apoc"]'
NEO4J_dbms_security_procedures_unrestricted: apoc.*
ports:
- "7474:7474" # HTTP browser
- "7687:7687" # Bolt
volumes:
- neo4jdata:/data
healthcheck:
test: ["CMD", "cypher-shell", "-u", "neo4j", "-p", "password", "RETURN 1"]
interval: 10s
timeout: 10s
retries: 10
qdrant:
image: qdrant/qdrant:latest
ports:
- "6333:6333" # REST
- "6334:6334" # gRPC
volumes:
- qdrantdata:/qdrant/storage
healthcheck:
test: ["CMD-SHELL", "curl -sf http://localhost:6333/healthz || exit 1"]
interval: 5s
timeout: 5s
retries: 10
volumes:
pgdata:
neo4jdata:
qdrantdata: