-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (30 loc) · 867 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
32 lines (30 loc) · 867 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
version: '3.8'
services:
neo4j:
image: neo4j:5.18-community
container_name: bioreason-neo4j
ports:
- "7474:7474" # Browser UI
- "7687:7687" # Bolt protocol
environment:
- NEO4J_AUTH=neo4j/bioreason123
- NEO4J_PLUGINS=["apoc"]
- NEO4J_dbms_memory_heap_initial__size=2G
- NEO4J_dbms_memory_heap_max__size=4G
- NEO4J_dbms_memory_pagecache_size=2G
- NEO4J_dbms_security_procedures_unrestricted=apoc.*
- NEO4J_dbms_security_procedures_allowlist=apoc.*
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
- neo4j_import:/var/lib/neo4j/import
healthcheck:
test: ["CMD", "cypher-shell", "-u", "neo4j", "-p", "bioreason123", "RETURN 1"]
interval: 15s
timeout: 10s
retries: 10
start_period: 30s
volumes:
neo4j_data:
neo4j_logs:
neo4j_import: