generated from Linkurious/docker-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.neo4jsa35.yml
35 lines (32 loc) · 1.08 KB
/
docker-compose.neo4jsa35.yml
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
---
version: '3.9'
services:
neo4j:
image: neo4j:3.5.35-enterprise
# depends_on:
# - plugins-neo4j
restart: always
volumes:
- lke_neo4j_data:/data
# - /opt/linkurious/data/airflow-jobs/neo4j/import:/var/lib/neo4j/import
# - /opt/linkurious/data/airflow-jobs/neo4j/export:/var/lib/neo4j/export
# - /opt/linkurious/data/airflow-jobs/neo4j/plugins:/plugins
# - /opt/linkurious/data/airflow-jobs/neo4j/query:/var/lib/neo4j/query
environment:
- NEO4J_dbms_security_procedures_unrestricted=\*.\*
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_export_file_enabled=true
- NEO4J_dbms_memory_heap_initial__size=2G
- NEO4J_dbms_memory_heap_max__size=4G
- NEO4J_dbms_memory_pagecache_size=2G
# used to be : NEO4J_dbms_allow__format__migration=true
- NEO4J_dbms_allow__upgrade=true
# force password, otherwise neo4j/neo4j and will request reset
- NEO4J_AUTH=neo4j/neo3j
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
networks:
- lke_network
volumes:
lke_neo4j_data:
networks:
lke_network: