diff --git a/influxdb/Dockerfile b/influxdb/Dockerfile new file mode 100644 index 0000000..c78b520 --- /dev/null +++ b/influxdb/Dockerfile @@ -0,0 +1,10 @@ +FROM ubuntu + +ADD http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb /influxdb_latest_amd64.deb +RUN dpkg -i /influxdb_latest_amd64.deb + +EXPOSE 8083 8086 + +VOLUME "/opt/influxdb/shared/data/db" +ENTRYPOINT ["/usr/bin/influxdb"] +CMD ["-config=/opt/influxdb/shared/config.toml"] diff --git a/minecraft/Dockerfile b/minecraft/Dockerfile index 9169d1e..31a16de 100644 --- a/minecraft/Dockerfile +++ b/minecraft/Dockerfile @@ -2,7 +2,6 @@ FROM ubuntu RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list RUN apt-get update -RUN apt-get upgrade -y RUN apt-get install -y python-software-properties RUN add-apt-repository ppa:webupd8team/java -y @@ -10,8 +9,7 @@ RUN add-apt-repository ppa:webupd8team/java -y 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 -y git curl oracle-java7-installer -RUN apt-get install -y wget +RUN apt-get install -y oracle-java7-installer wget RUN mkdir /minecraft RUN wget -O /minecraft/minecraft.jar https://s3.amazonaws.com/Minecraft.Download/versions/1.7.4/minecraft_server.1.7.4.jar