-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (35 loc) · 787 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
40 lines (35 loc) · 787 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
version: '3'
services:
mcp_server:
build:
context: .
dockerfile: Dockerfile
environment:
- GITHUB_TOKEN=${GITHUB_TOKEN}
- NEO4J_PASSWORD=${NEO4J_PASSWORD:-password}
- MCP_TRANSPORT=http
ports:
- "8000:8000"
volumes:
- ./data:/app/data
depends_on:
- neo4j
command: python mcp_server.py
neo4j:
image: neo4j:latest
ports:
- "7474:7474" # HTTP
- "7687:7687" # Bolt
environment:
- NEO4J_AUTH=neo4j/${NEO4J_PASSWORD:-password}
- NEO4J_PLUGINS=["graph-data-science"]
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
- neo4j_import:/var/lib/neo4j/import
- neo4j_plugins:/plugins
volumes:
neo4j_data:
neo4j_logs:
neo4j_import:
neo4j_plugins: