[es] Upgrade to 2.0.0

This commit is contained in:
Geoff Bourne
2015-10-29 19:58:28 -05:00
parent 5484f50659
commit b3a79d6b08
3 changed files with 13 additions and 3 deletions
+4 -2
View File
@@ -2,9 +2,9 @@ FROM itzg/ubuntu-openjdk-7
MAINTAINER itzg
ENV ES_VERSION 1.7.3
ENV ES_VERSION 2.0.0
RUN wget -qO /tmp/es.tgz https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-$ES_VERSION.tar.gz && \
RUN wget -qO /tmp/es.tgz https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/$ES_VERSION/elasticsearch-$ES_VERSION.tar.gz && \
cd /usr/share && \
tar xf /tmp/es.tgz && \
rm /tmp/es.tgz
@@ -23,4 +23,6 @@ USER elasticsearch
EXPOSE 9200 9300
ENV OPTS=-Dnetwork.bind_host=_non_loopback_
CMD ["/start"]