-
-
Save Joshfindit/2a2c1e479f4367cf2ff64984aee488da to your computer and use it in GitHub Desktop.
Docker Image for Neo4j 3.1 with just APOC (Spatial plugin not currently updated for 3.1)
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
# Adding APOC to Official Neo4j Docker Image | |
FROM neo4j:3.1 | |
ENV NEO4J_PLUGINS_PATH /var/lib/neo4j/plugins/ | |
ENV NEO4J_APOC_FILE apoc-3.1.0.3-all.jar | |
ENV NEO4J_APOC_URI https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.1.0.3/apoc-3.1.0.3-all.jar | |
RUN curl --fail --silent --show-error --location --output $NEO4J_APOC_FILE $NEO4J_APOC_URI \ | |
&& mv $NEO4J_APOC_FILE $NEO4J_PLUGINS_PATH | |
EXPOSE 7474 7473 7687 | |
CMD ["neo4j"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment