forked from adwyte/asset-intelligence-graph-rag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
43 lines (41 loc) · 1.03 KB
/
docker-compose.yaml
File metadata and controls
43 lines (41 loc) · 1.03 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
services:
neo4j:
image: neo4j:5
container_name: graph-rag-neo4j
restart: unless-stopped
ports:
- "7474:7474" # HTTP (browser)
- "7687:7687" # Bolt (driver)
environment:
NEO4J_AUTH: neo4j/adwyteneo
NEO4J_dbms_security_procedures_unrestricted: "apoc.*"
NEO4J_apoc_export_file_enabled: "true"
NEO4J_apoc_import_file_enabled: "true"
NEO4J_PLUGINS: '["apoc"]'
volumes:
- ./neo4j/data:/data
- ./neo4j/logs:/logs
- ./neo4j/import:/import
- ./neo4j/plugins:/plugins
backend:
build:
context: .
dockerfile: backend/Dockerfile
container_name: graph-rag-backend
restart: unless-stopped
ports:
- "8000:8000" # FastAPI Web Server
env_file:
- .env
depends_on:
- neo4j
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: graph-rag-frontend
restart: unless-stopped
ports:
- "5173:80" # Serving React via Nginx on port 5173
depends_on:
- backend