2021-09-23 09:53:51 +02:00
|
|
|
#
|
|
|
|
# References:
|
|
|
|
# - https://neo4j.com/docs/operations-manual/current/docker/
|
|
|
|
# - https://neo4j.com/docs/operations-manual/current/docker/ref-settings/
|
|
|
|
# - https://neo4j.com/docs/operations-manual/current/reference/configuration-settings/
|
|
|
|
#
|
|
|
|
|
|
|
|
version: "3.8"
|
|
|
|
services:
|
|
|
|
neo4j:
|
2022-11-18 07:22:33 +02:00
|
|
|
image: neo4j:5-community
|
2021-09-23 09:53:51 +02:00
|
|
|
ports:
|
|
|
|
- "7474:7474"
|
|
|
|
- "7687:7687"
|
|
|
|
volumes:
|
|
|
|
- ./data/conf:/conf
|
|
|
|
- ./data/data:/data
|
|
|
|
- ./data/import:/import
|
|
|
|
- ./data/logs:/logs
|
|
|
|
- ./data/plugins:/plugins
|
|
|
|
environment:
|
|
|
|
- NEO4J_AUTH=none
|
|
|
|
- NEO4J_dbms.memory.heap.initial_size=5g
|
|
|
|
- NEO4J_dbms_memory_heap_max__size=5g
|
|
|
|
- NEO4J_dbms_memory_pagecache_size=7g
|
|
|
|
ulimits:
|
|
|
|
nofile:
|
|
|
|
soft: 65535
|
|
|
|
hard: 65535
|
|
|
|
restart: unless-stopped
|