forked from pires/docker-elasticsearch-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
13 lines (9 loc) · 801 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM quay.io/pires/docker-elasticsearch:5.3.0
MAINTAINER Ross Kukulinski <[email protected]>
# Override config, otherwise plug-in install will fail
ADD config /elasticsearch/config
# Set environment
ENV DISCOVERY_SERVICE elasticsearch-discovery
RUN NODE_NAME=foobar /elasticsearch/bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/5.3.0.0/elasticsearch-prometheus-exporter-5.3.0.0.zip
RUN NODE_NAME=foobar /elasticsearch/bin/elasticsearch-plugin install -b https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-gcs/repository-gcs-5.3.0.zip
RUN NODE_NAME=foobar /elasticsearch/bin/elasticsearch-plugin install -b https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-s3/repository-s3-5.3.0.zip