Skip to content

Commit

Permalink
🔖3.5.8-enterprise-p.0
Browse files Browse the repository at this point in the history
- 🔧 Use latest immutable neo4j version
- 🔧 Add APOC related env vars
  • Loading branch information
a-tokyo authored Aug 22, 2019
2 parents 270041c + c1e975d commit e7a92cb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
FROM neo4j:3.5-enterprise
FROM neo4j:3.5.8-enterprise

ENV _JAVA_OPTIONS=-Xmx2g \
NEO4J_ACCEPT_LICENSE_AGREEMENT='yes' \
NEO4J_dbms_connector_http_listen__address=':7474' \
NEO4J_dbms_connector_bolt_listen__address=':7687' \
NEO4J_APOC_PLUGIN_VERSION=3.5.0.4 \
NEO4J_PLUGINS_PATH=/var/lib/neo4j/plugins \
NEO4J_APOC_PLUGIN_PATH=$NEO4J_PLUGINS_PATH/apoc-$NEO4J_APOC_PLUGIN_VERSION-all.jar
NEO4J_APOC_PLUGIN_VERSION=3.5.0.4 \
NEO4J_APOC_PLUGIN_PATH=$NEO4J_PLUGINS_PATH/apoc-$NEO4J_APOC_PLUGIN_VERSION-all.jar \
NEO4J_apoc_export_file_enabled=true \
NEO4J_apoc_import_file_enabled=true \
NEO4J_apoc_import_file_use__neo4j__config=true

RUN apt-get update && apt-get -qq -y install wget
RUN wget https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/$NEO4J_APOC_PLUGIN_VERSION/apoc-$NEO4J_APOC_PLUGIN_VERSION-all.jar
Expand Down

0 comments on commit e7a92cb

Please sign in to comment.