Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(): update elasticsearch to 1.3.0
  • Loading branch information
FalkenLabs committed Jul 27, 2014
commit 03a80219e82e53a424d7637bd736c226c088caf0
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ FROM dockerfile/java
# Install ElasticSearch.
RUN \
cd /tmp && \
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.2.tar.gz && \
tar xvzf elasticsearch-1.2.2.tar.gz && \
rm -f elasticsearch-1.2.2.tar.gz && \
mv /tmp/elasticsearch-1.2.2 /elasticsearch
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.3.0.tar.gz && \
tar xvzf elasticsearch-1.3.0.tar.gz && \
rm -f elasticsearch-1.3.0.tar.gz && \
mv /tmp/elasticsearch-1.3.0 /elasticsearch

# Define mountable directories.
VOLUME ["/data"]
Expand Down