Skip to content
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
4 changes: 2 additions & 2 deletions addons/elasticsearch/plugins/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /plugins
# Install all plugins
RUN set -e && \
# IK plugins for all versions \
for version in 6.8.23 7.7.1 7.8.1 7.10.1 8.1.3 8.8.2 8.15.5; do \
for version in 6.8.23 7.7.1 7.8.1 7.10.1 7.10.2 8.1.3 8.8.2 8.15.5; do \
echo "Installing IK plugin for Elasticsearch $version"; \
mkdir -p ./${version}/ik && \
wget -q https://release.infinilabs.com/analysis-ik/stable/elasticsearch-analysis-ik-${version}.zip && \
Expand All @@ -19,7 +19,7 @@ RUN set -e && \
done && \
\
# S3 plugins for 6.x and 7.x (8.x has it built-in) \
for version in 6.8.23 7.7.1 7.8.1 7.10.1; do \
for version in 6.8.23 7.7.1 7.8.1 7.10.1 7.10.2; do \
echo "Installing S3 plugin for Elasticsearch $version"; \
mkdir -p ./${version}/s3 && \
wget -q https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-s3/repository-s3-${version}.zip && \
Expand Down