Skip to content

Commit

Permalink
opensearch 2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed May 16, 2024
1 parent fb533d7 commit 1014826
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions opensearch/2.14/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM opensearchproject/opensearch:2.14.0

ARG ANALYSIS_EXTENSION_PLUGIN=org.codelibs.opensearch:opensearch-analysis-extension:2.14.0
ARG ANALYSIS_FESS_PLUGIN=org.codelibs.opensearch:opensearch-analysis-fess:2.14.0
ARG MINHASH_PLUGIN=org.codelibs.opensearch:opensearch-minhash:2.14.0
ARG CONFIGSYNC_PLUGIN=org.codelibs.opensearch:opensearch-configsync:2.14.0

RUN /usr/share/opensearch/bin/opensearch-plugin install $ANALYSIS_FESS_PLUGIN -b && \
/usr/share/opensearch/bin/opensearch-plugin install $ANALYSIS_EXTENSION_PLUGIN -b && \
/usr/share/opensearch/bin/opensearch-plugin install $MINHASH_PLUGIN -b && \
/usr/share/opensearch/bin/opensearch-plugin install $CONFIGSYNC_PLUGIN -b && \
echo 'configsync.config_path: ${FESS_DICTIONARY_PATH}' >> /usr/share/opensearch/config/opensearch.yml && \
mkdir /usr/share/opensearch/config/dictionary && \
chown opensearch /usr/share/opensearch/config/dictionary

0 comments on commit 1014826

Please sign in to comment.