Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade es to v8 #54

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM geonetwork:4.4.1
FROM geonetwork:4.4.5
EXPOSE 8080
EXPOSE 8000

8 changes: 4 additions & 4 deletions docker-es-compose.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
version: '3.7'
services:
setup:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.12
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.3
networks:
- elastic
volumes:
@@ -61,7 +61,7 @@ services:
hostname: es-container
depends_on:
- setup
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.12
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.3
deploy:
resources:
limits:
@@ -108,7 +108,7 @@ services:
kibana:
container_name: kb-container
hostname: kb-container
image: docker.elastic.co/kibana/kibana:7.17.12
image: docker.elastic.co/kibana/kibana:8.11.3
restart: always
user: "1000"
env_file:
@@ -149,7 +149,7 @@ services:
- .env
restart: always
user: "1000"
image: docker.elastic.co/enterprise-search/enterprise-search:7.17.12
image: docker.elastic.co/enterprise-search/enterprise-search:8.11.3
volumes:
- ./elasticdata/certs:/usr/share/enterprise-search/config/certs
- ./elasticdata/enterprisesearch-data:/usr/share/enterprise-search/data
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
<parent>
<artifactId>geonetwork</artifactId>
<groupId>org.geonetwork-opensource</groupId>
<version>4.4.1-0</version>
<version>4.4.5-0</version>
</parent>

<groupId>au.org.aodn</groupId>
@@ -22,7 +22,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- This needs to match with parent version and the Docker image version-->
<geonetwork.version>4.4.1-0</geonetwork.version>
<geonetwork.version>4.4.5-0</geonetwork.version>
<!-- Targe jdk 11 -->
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>