├── Dockerfile ├── LICENSE ├── README.md ├── compose └── docker-compose.yml ├── conf └── neo4j │ ├── mazerunner.properties │ └── neo4j.conf ├── plugins ├── apoc-3.5.0.4-all.jar └── extension-1.1.2-RELEASE-jar-with-dependencies.jar └── sbin └── bootstrap.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/README.md -------------------------------------------------------------------------------- /compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/compose/docker-compose.yml -------------------------------------------------------------------------------- /conf/neo4j/mazerunner.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/conf/neo4j/mazerunner.properties -------------------------------------------------------------------------------- /conf/neo4j/neo4j.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/conf/neo4j/neo4j.conf -------------------------------------------------------------------------------- /plugins/apoc-3.5.0.4-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/plugins/apoc-3.5.0.4-all.jar -------------------------------------------------------------------------------- /plugins/extension-1.1.2-RELEASE-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/plugins/extension-1.1.2-RELEASE-jar-with-dependencies.jar -------------------------------------------------------------------------------- /sbin/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbastani/docker-neo4j/HEAD/sbin/bootstrap.sh --------------------------------------------------------------------------------