mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
18 lines
399 B
Docker
Executable File
18 lines
399 B
Docker
Executable File
FROM openjdk:8-jre
|
|
|
|
LABEL maintainer "itzg"
|
|
|
|
ENV TITAN_VERSION 0.5.4
|
|
|
|
ADD http://s3.thinkaurelius.com/downloads/titan/titan-$TITAN_VERSION-hadoop2.zip /tmp/titan.zip
|
|
RUN unzip -q /tmp/titan.zip -d /opt && \
|
|
rm /tmp/titan.zip
|
|
|
|
ENV TITAN_HOME /opt/titan-$TITAN_VERSION-hadoop2
|
|
WORKDIR $TITAN_HOME
|
|
|
|
VOLUME ["/conf","/data"]
|
|
ADD start-gremlin.sh /opt/start-gremlin.sh
|
|
|
|
CMD ["/opt/start-gremlin.sh"]
|