Skip to content

Instantly share code, notes, and snippets.

@Pepeye
Created December 1, 2018 12:46
Show Gist options
  • Save Pepeye/11aa522934abf2da7e81eaa4012aafdc to your computer and use it in GitHub Desktop.
Save Pepeye/11aa522934abf2da7e81eaa4012aafdc to your computer and use it in GitHub Desktop.
Neo4j docker compose
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