mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 14:24:28 +00:00
88a796bb44
* corrected .dockerignore to allow for a $(pwd)/data for local testing of -v
29 lines
695 B
Docker
29 lines
695 B
Docker
FROM itzg/ubuntu-openjdk-7
|
|
|
|
MAINTAINER itzg
|
|
|
|
RUN apt-get install -y wget libmozjs-24-bin imagemagick && apt-get clean
|
|
RUN update-alternatives --install /usr/bin/js js /usr/bin/js24 100
|
|
|
|
RUN wget -O /usr/bin/jsawk https://github.com/micha/jsawk/raw/master/jsawk
|
|
RUN chmod +x /usr/bin/jsawk
|
|
RUN useradd -M -s /bin/false --uid 1000 minecraft \
|
|
&& mkdir /data \
|
|
&& chown minecraft:minecraft /data
|
|
|
|
EXPOSE 25565
|
|
|
|
ADD start.sh /start
|
|
ADD start-minecraft.sh /start-minecraft
|
|
|
|
VOLUME ['/data']
|
|
ADD server.properties /tmp/server.properties
|
|
WORKDIR /data
|
|
|
|
CMD [ "/start" ]
|
|
|
|
ENV UID 1000
|
|
ENV MOTD A Minecraft Server Powered by Docker
|
|
ENV LEVEL world
|
|
ENV JVM_OPTS -Xmx1024M -Xms1024M
|
|
ENV VERSION LATEST
|