Update mcp_server/docker/docker-compose-neo4j.yml
Some checks are pending
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Lint with Ruff / ruff (push) Waiting to run
Pyright Type Check / pyright (push) Waiting to run
Tests / unit-tests (push) Waiting to run
Tests / database-integration-tests (push) Waiting to run
Some checks are pending
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Lint with Ruff / ruff (push) Waiting to run
Pyright Type Check / pyright (push) Waiting to run
Tests / unit-tests (push) Waiting to run
Tests / database-integration-tests (push) Waiting to run
This commit is contained in:
parent
8bbf068eae
commit
323bd57c9b
1 changed files with 6 additions and 6 deletions
|
|
@ -1,23 +1,23 @@
|
||||||
services:
|
services:
|
||||||
neo4j:
|
neo4j:
|
||||||
image: neo4j:5.26.0
|
image: neo4j:latest
|
||||||
ports:
|
ports:
|
||||||
- "7474:7474" # HTTP
|
- "7474:7474" # HTTP
|
||||||
- "7687:7687" # Bolt
|
- "7687:7687" # Bolt
|
||||||
environment:
|
environment:
|
||||||
- NEO4J_AUTH=${NEO4J_USER:-neo4j}/${NEO4J_PASSWORD:-kg3Jsdb2}
|
- NEO4J_AUTH=${NEO4J_USER:-neo4j}/${NEO4J_PASSWORD:-kg3Jsdb2}
|
||||||
- NEO4J_server_memory_heap_initial__size=512m
|
|
||||||
- NEO4J_server_memory_heap_max__size=1G
|
|
||||||
- NEO4J_server_memory_pagecache_size=512m
|
|
||||||
volumes:
|
volumes:
|
||||||
- neo4j_data:/data
|
- /data/neo4j/data:/data
|
||||||
- neo4j_logs:/logs
|
- /data/neo4j/logs:/logs
|
||||||
|
- /data/neo4j/plugins:/plugins
|
||||||
|
- /data/neo4j/config:/config
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "-O", "/dev/null", "http://localhost:7474"]
|
test: ["CMD", "wget", "-O", "/dev/null", "http://localhost:7474"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
start_period: 30s
|
start_period: 30s
|
||||||
|
restart: always
|
||||||
|
|
||||||
graphiti-mcp:
|
graphiti-mcp:
|
||||||
image: zepai/knowledge-graph-mcp:standalone
|
image: zepai/knowledge-graph-mcp:standalone
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue