Last active
March 4, 2020 16:07
-
-
Save gdebenito/c1a55d129ae7f009923d2e7b46ea8986 to your computer and use it in GitHub Desktop.
Neo4j docker compose configuration with graph algorithms and apoc procedures.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.2' | |
services: | |
neo4j: | |
image: 'neo4j:3.5.11' | |
ports: | |
- '7474:7474' | |
- '7473:7473' | |
- '7687:7687' | |
volumes: | |
- type: 'bind' | |
source: './import' | |
target: '/import' | |
environment: | |
- 'NEO4JLABS_PLUGINS=["apoc", "graph-algorithms"]' | |
# user: neo4j | |
# passord: test | |
- 'NEO4J_AUTH=neo4j/test' | |
- NEO4J_dbms_security_procedures_unrestricted=apoc.* | |
- NEO4J_apoc_import_file_enabled=true | |
- NEO4J_dbms_shell_enabled=true | |
- NEO4J_apoc_export_file_enabled=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment