Created
August 4, 2013 07:56
-
-
Save dahernan/6149626 to your computer and use it in GitHub Desktop.
elasticsearch Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu | |
MAINTAINER dahernan "[email protected]" | |
# Java 7 | |
RUN echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list | |
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886 | |
RUN apt-get update | |
RUN echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections | |
RUN apt-get install oracle-java7-installer -y | |
# elasticsearch | |
RUN apt-get install wget -y | |
RUN wget --no-check-certificate https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.2.tar.gz | |
RUN tar -xf elasticsearch-0.90.2.tar.gz | |
RUN rm elasticsearch-0.90.2.tar.gz | |
EXPOSE :9200 | |
CMD elasticsearch-0.90.2/bin/elasticsearch -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment