Skip to content

Commit 4c1ca84

Browse files
authored
ES 7.17.15 sync with pom.xml es.version property (#8811)
1 parent b5bca22 commit 4c1ca84

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

es/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## Manual installation
44

5-
1. Download Elasticsearch (at least 7.6.2 for Geonetwork 4.0.x) from https://www.elastic.co/downloads/elasticsearch
6-
and copy to the ES module, e.g., es/elasticsearch-7.6.2
5+
1. Download Elasticsearch (at least 7.17.15 for Geonetwork 4.0.x) from https://www.elastic.co/downloads/elasticsearch
6+
and copy to the ES module, e.g., es/elasticsearch-7.17.15
77

88
2. Start ES using:
99

@@ -35,13 +35,13 @@ and copy to the ES module, e.g., es/elasticsearch-7.6.2
3535
1. Use docker pull to download the image (you can check version in the :file:`pom.xml` file):
3636

3737
```
38-
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.6.2
38+
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.17.15
3939
```
4040

4141
2. Use docker run, leaving 9200 available:
4242

4343
```
44-
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.6.2
44+
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.17.15
4545
```
4646

4747
3. Check that elasticsearch is running by visiting http://localhost:9200 in a browser

es/docker-compose.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
version: '3'
2-
31
services:
42
elasticsearch:
5-
image: docker.elastic.co/elasticsearch/elasticsearch:7.6.2
3+
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.15
64
container_name: elasticsearch
75
environment:
86
- cluster.name=docker-cluster
@@ -18,7 +16,7 @@ services:
1816
ports:
1917
- "9200:9200"
2018
kibana:
21-
image: docker.elastic.co/kibana/kibana:7.6.2
19+
image: docker.elastic.co/kibana/kibana:7.17.15
2220
container_name: kibana
2321
ports:
2422
- "5601:5601"

0 commit comments

Comments
 (0)