mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
18 lines
413 B
Docker
18 lines
413 B
Docker
FROM itzg/ubuntu-openjdk-7
|
|
|
|
MAINTAINER itzg
|
|
|
|
RUN apt-get install -y wget unzip
|
|
|
|
RUN wget -q -O /tmp/titan.zip http://s3.thinkaurelius.com/downloads/titan/titan-0.5.0-hadoop2.zip
|
|
RUN unzip /tmp/titan.zip -d /opt && rm /tmp/titan.zip
|
|
|
|
ENV TITAN_HOME /opt/titan-0.5.0-hadoop2
|
|
WORKDIR $TITAN_HOME
|
|
|
|
VOLUME ["/conf","/data"]
|
|
ADD start-gremlin.sh /opt/start-gremlin.sh
|
|
|
|
CMD ["/bin/bash", "-e", "/opt/start-gremlin.sh"]
|
|
|