From e20f98c2c7b0f3ce5128cd76c815b5d7312db05b Mon Sep 17 00:00:00 2001 From: manuasir Date: Thu, 19 Sep 2019 12:09:33 +0200 Subject: [PATCH] Fixed s3 plugin --- elasticsearch/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/elasticsearch/Dockerfile b/elasticsearch/Dockerfile index ba353de1..bb70cd61 100644 --- a/elasticsearch/Dockerfile +++ b/elasticsearch/Dockerfile @@ -1,7 +1,6 @@ # Wazuh Docker Copyright (C) 2019 Wazuh Inc. (License GPLv2) ARG ELASTIC_VERSION=7.3.0 FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION} -ARG S3_PLUGIN_URL="https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-s3/repository-s3-${ELASTIC_VERSION}.zip" ENV ELASTICSEARCH_URL="http://elasticsearch:9200" @@ -42,7 +41,7 @@ COPY --chown=elasticsearch:elasticsearch ./config/load_settings.sh ./ RUN chmod +x ./load_settings.sh -RUN ${bin/elasticsearch-plugin install --batch S3_PLUGIN_URL} +RUN ${bin/elasticsearch-plugin install --batch repository-s3} COPY config/configure_s3.sh ./config/configure_s3.sh RUN chmod 755 ./config/configure_s3.sh