Created
December 1, 2018 12:46
-
-
Save Pepeye/11aa522934abf2da7e81eaa4012aafdc to your computer and use it in GitHub Desktop.
Neo4j docker compose
This file contains hidden or 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' | |
services: | |
neo4j: | |
image: neo4j:latest | |
network_mode: "bridge" | |
ports: | |
- "7474:7474" | |
- "7687:7687" | |
environment: | |
- NEO4J_dbms_security_procedures_unrestricted=apoc.* | |
- NEO4J_apoc_import_file_enabled=true | |
- NEO4J_dbms_shell_enabled=true | |
volumes: | |
- ./plugins:/plugins | |
- ./data:/data | |
- ./import:/import |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment