Files

9 lines
314 B
Docker
Raw Permalink Normal View History

ARG OPENSEARCH_VERSION
2021-12-15 02:28:29 -07:00
FROM opensearchproject/opensearch:$OPENSEARCH_VERSION
ARG opensearch_path=/usr/share/opensearch
ARG opensearch_yml=$opensearch_path/config/opensearch.yml
ARG SECURE_INTEGRATION
RUN if [ "$SECURE_INTEGRATION" != "true" ] ; then echo "plugins.security.disabled: true" >> $opensearch_yml; fi