-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (25 loc) · 883 Bytes
/
docker-compose.yml
File metadata and controls
25 lines (25 loc) · 883 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
services:
neo4j:
image: neo4j:2025.03.0-enterprise
container_name: memento-neo4j
platform: linux/amd64
user: "${UID:-1000}:${GID:-1000}"
environment:
- NEO4J_AUTH=neo4j/memento_password
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
- NEO4J_dbms_security_procedures_unrestricted=apoc.*,gds.*
- NEO4J_dbms_security_procedures_allowlist=apoc.*,gds.*
- NEO4J_dbms_connector_bolt_enabled=true
- NEO4J_dbms_connector_http_enabled=true
- NEO4J_server_memory_pagecache_size=768M
- NEO4J_server_memory_heap_max__size=1536M
ports:
- "7474:7474" # HTTP
- "7687:7687" # Bolt
volumes:
- ./neo4j-data:/data
- ./neo4j-logs:/logs
- ./neo4j-import:/import