Merge pull request #6 from appinteractive/provide_apoc_for_dockerized_neo4j

Custom Dockerfile to install apoc plugin in neo4j
This commit is contained in:
Grzegorz Leoniec 2018-10-23 23:51:02 +02:00 committed by GitHub
commit 4e89597106
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

3
Dockerfile.neo4j Normal file
View File

@ -0,0 +1,3 @@
FROM neo4j:3.4
RUN mkdir /plugins && wget https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.4.0.3/apoc-3.4.0.3-all.jar -P /plugins

View File

@ -18,7 +18,9 @@ services:
- MOCK=false
neo4j:
image: neo4j:3.4
build:
context: .
dockerfile: Dockerfile.neo4j
networks:
- hc-network
volumes: