Skip to content

Commit

Permalink
updated mongo and neo4j versions for #104
Browse files Browse the repository at this point in the history
  • Loading branch information
giraygi committed Jan 9, 2025
1 parent c011477 commit 480ac13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions dataload/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ RUN cd /opt/ols/dataload && mvn package
# and Solr servers are the standard images specified in docker-compose.yml
#

RUN if [ ! -f "/opt/ols/dataload/neo4j-community-5.25.1-unix.tar.gz" ]; \
then mkdir /opt/neo4j && curl https://dist.neo4j.org/neo4j-community-5.25.1-unix.tar.gz | tar -xz --strip-components=1 -C /opt/neo4j; \
else mkdir /opt/neo4j && tar -xz -f /opt/ols/dataload/neo4j-community-5.25.1-unix.tar.gz --strip-components=1 -C /opt/neo4j; fi
RUN if [ ! -f "/opt/ols/dataload/neo4j-community-5.26.0-unix.tar.gz" ]; \
then mkdir /opt/neo4j && curl https://dist.neo4j.org/neo4j-community-5.26.0-unix.tar.gz | tar -xz --strip-components=1 -C /opt/neo4j; \
else mkdir /opt/neo4j && tar -xz -f /opt/ols/dataload/neo4j-community-5.26.0-unix.tar.gz --strip-components=1 -C /opt/neo4j; fi

RUN if [ ! -f "/opt/ols/dataload/solr-9.7.0.tgz" ]; \
then mkdir /opt/solr && curl https://archive.apache.org/dist/solr/solr/9.7.0/solr-9.7.0.tgz | tar -xz --strip-components=1 -C /opt/solr; \
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
#- ./docker_out:/tmp/out:rw
command: ./dataload.dockersh ${OLS4_DATALOAD_ARGS:-}
mongo:
image: mongo:3.4.24
image: mongo:7.0.16
ports:
- 27017:27017
volumes:
Expand All @@ -37,7 +37,7 @@ services:
ols4-dataload:
condition: service_completed_successfully
ols4-neo4j:
image: neo4j:5.25.1-community
image: neo4j:5.26.0-community
ports:
- 7474:7474
- 7687:7687
Expand Down

0 comments on commit 480ac13

Please sign in to comment.