-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (28 loc) · 884 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (28 loc) · 884 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
# AMP infrastructure — Neo4j only.
# Redis is shared from ~/infra (cerebro-redis), bound to 127.0.0.1 with requirepass.
# MCP server runs via systemd (amp-mcp.service), not Docker.
services:
neo4j:
image: neo4j:5-community
container_name: amp-neo4j
ports:
- "127.0.0.1:7474:7474"
- "127.0.0.1:7687:7687"
volumes:
- neo4j_data:/data
- neo4j_plugins:/plugins
environment:
NEO4J_AUTH: neo4j/amp-memory-2026
NEO4J_PLUGINS: '["apoc", "graph-data-science"]'
NEO4J_dbms_security_procedures_unrestricted: "apoc.*,gds.*"
NEO4J_dbms_memory_heap_initial__size: "256m"
NEO4J_dbms_memory_heap_max__size: "512m"
NEO4J_dbms_memory_pagecache_size: "256m"
restart: unless-stopped
volumes:
neo4j_data:
name: amp_neo4j_data
external: true
neo4j_plugins:
name: amp_neo4j_plugins
external: true