From 1f6f15d1212e1a78fa27c099163372955ed9dabb Mon Sep 17 00:00:00 2001 From: Robin Duda Date: Sun, 20 Dec 2020 14:50:25 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb82c5d..6804dc0 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The application requires ElasticSearch as its output. 2. Grab the latest .jar file from [releases](https://github.com/codingchili/parser-excel-elasticsearch/releases). -Tested with ElasticSearch 5.6.2, 6.4.2, 7.0.0-alpha1 and 7.4.0. +Tested with ElasticSearch 5.6.2, 6.4.2, 7.0.0-alpha1, 7.4.0 and **7.10.1**. ## Running with docker ```console From ecb5ab5e93aa0ee6f045f76eb046fcb42a76e09b Mon Sep 17 00:00:00 2001 From: Robin Duda Date: Sun, 20 Dec 2020 16:06:35 +0100 Subject: [PATCH 2/3] updated dockerfile for gradle builds. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d93fc2e..3fa22ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ MAINTAINER codingchili@github RUN mkdir -p /opt/excelastic COPY docker/configuration_template.json /opt/excelastic COPY docker/bootstrap.sh /opt/excelastic -COPY excelastic-*.jar /opt/excelastic/excelastic.jar +COPY build/libs/excelastic-*.jar /opt/excelastic/excelastic.jar RUN chmod +x /opt/excelastic/bootstrap.sh && \ apk add gettext From e72866c608ce5f219489089e790b47a6963c8af7 Mon Sep 17 00:00:00 2001 From: Robin Duda Date: Sun, 20 Dec 2020 16:09:34 +0100 Subject: [PATCH 3/3] update release docs for docker --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3fa22ca..bfb6240 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,8 @@ MAINTAINER codingchili@github # run mvn clean package to build the jar file. # to build the docker image run: docker build . +# to push the image +# docker tag /excelastic: RUN mkdir -p /opt/excelastic COPY docker/configuration_template.json /opt/excelastic