-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to 7.17.1, add docker files and update readme
- Loading branch information
Bapt Abl
committed
Mar 18, 2022
1 parent
34f3eba
commit f231e5d
Showing
6 changed files
with
71 additions
and
25 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: "3.7" | ||
|
||
services: | ||
elasticsearch-plugin-debug: | ||
build: | ||
context: . | ||
dockerfile: docker/Dockerfile | ||
target: elasticsearch-plugin-debug | ||
environment: | ||
- discovery.type=single-node | ||
# NO DEBUG | ||
- ES_JAVA_OPTS=-Xms512m -Xmx512m | ||
# DEBUG | ||
# - ES_JAVA_OPTS=-Xms512m -Xmx512m -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 | ||
ports: | ||
- "9200:9200" | ||
- "5005:5005" # DEBUG |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.1 AS elasticsearch-plugin-debug | ||
|
||
COPY /build/distributions/elasticsearch-plugin-geoshape-7.17.1.0.zip /tmp/elasticsearch-plugin-geoshape-7.17.1.0.zip | ||
RUN ./bin/elasticsearch-plugin install file:/tmp/elasticsearch-plugin-geoshape-7.17.1.0.zip |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
elastic_version = 7.17.0 | ||
plugin_version = 7.17.0.0 | ||
elastic_version = 7.17.1 | ||
plugin_version = 7.17.1.0 |
Binary file not shown.