-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (33 loc) · 875 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (33 loc) · 875 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
version: '3.8'
services:
# Neo4j Graph Database
neo4j:
image: neo4j:5.15.0
container_name: scimind-neo4j
ports:
- "7474:7474" # HTTP
- "7687:7687" # Bolt
environment:
- NEO4J_AUTH=neo4j/password
- NEO4J_PLUGINS=["apoc", "graph-data-science"]
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
restart: unless-stopped
# PostgreSQL with pgvector
postgres:
image: pgvector/pgvector:pg17
container_name: scimind-postgres
ports:
- "54320:5432" # Exposed on port 54320 to avoid conflict with local Postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=scimind
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
neo4j_data:
neo4j_logs:
postgres_data: