mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-13 22:02:28 +00:00
52d4cae74d
* feat(minecraft-server): add onbuild trigger Added a ONBUILD trigger for the [ToF-BuildTools](https://git.faldoria.de/tof/server/build-tools). If a plugins.yml is provided the BuildTools will download all plugins configured in the YAML. https://github.com/itzg/dockerfiles/issues/218 * feat(minecraft-server): add arg for build output * fix(minecraft-server): syntax error in Dockerfile * fix(minecraft-server): chown jar files after building * feat(minecraft-server): cleanup buildtools after using * fix(minecraft-server): remove /plugins volume The /plugins volume causes weird behaviour when prepolulating it with files on build. Removing it as an explicit volume fixes that. * mc: add example Dockerfile for ToF builds * docs(minecraft-server): add docs for new onbuild trigger * fix(minecraft-server): use correct url for build tools download
76 lines
2.6 KiB
Docker
76 lines
2.6 KiB
Docker
FROM openjdk:8u171-jre-alpine
|
|
|
|
LABEL maintainer "itzg"
|
|
|
|
RUN apk add --no-cache -U \
|
|
openssl \
|
|
imagemagick \
|
|
lsof \
|
|
su-exec \
|
|
shadow \
|
|
bash \
|
|
curl iputils wget \
|
|
git \
|
|
jq \
|
|
mysql-client \
|
|
tzdata \
|
|
rsync \
|
|
python python-dev py2-pip
|
|
|
|
RUN pip install mcstatus
|
|
|
|
HEALTHCHECK CMD mcstatus localhost:$SERVER_PORT ping
|
|
|
|
RUN addgroup -g 1000 minecraft \
|
|
&& adduser -Ss /bin/false -u 1000 -G minecraft -h /home/minecraft minecraft \
|
|
&& mkdir -m 777 /data /mods /config /plugins \
|
|
&& chown minecraft:minecraft /data /config /mods /plugins /home/minecraft
|
|
|
|
EXPOSE 25565 25575
|
|
|
|
ARG RESTIFY_VER=1.1.4
|
|
ARG RCON_CLI_VER=1.4.0
|
|
ARG MC_SERVER_RUNNER_VER=1.2.0
|
|
ARG ARCH=amd64
|
|
|
|
ADD https://github.com/itzg/restify/releases/download/${RESTIFY_VER}/restify_${RESTIFY_VER}_linux_${ARCH}.tar.gz /tmp/restify.tgz
|
|
RUN tar -x -C /usr/local/bin -f /tmp/restify.tgz restify && \
|
|
rm /tmp/restify.tgz
|
|
|
|
ADD https://github.com/itzg/rcon-cli/releases/download/${RCON_CLI_VER}/rcon-cli_${RCON_CLI_VER}_linux_${ARCH}.tar.gz /tmp/rcon-cli.tgz
|
|
RUN tar -x -C /usr/local/bin -f /tmp/rcon-cli.tgz rcon-cli && \
|
|
rm /tmp/rcon-cli.tgz
|
|
|
|
ADD https://github.com/itzg/mc-server-runner/releases/download/${MC_SERVER_RUNNER_VER}/mc-server-runner_${MC_SERVER_RUNNER_VER}_linux_${ARCH}.tar.gz /tmp/mc-server-runner.tgz
|
|
RUN tar -x -C /usr/local/bin -f /tmp/mc-server-runner.tgz mc-server-runner && \
|
|
rm /tmp/mc-server-runner.tgz
|
|
|
|
ADD https://git.faldoria.de/tof/server/build-tools/-/jobs/artifacts/master/raw/target/ToF-BuildTools.jar?job=deploy /tmp/tof-buildtools/BuildTools.jar
|
|
|
|
ONBUILD ARG BUILDTOOLS_OUTPUT=/plugins
|
|
ONBUILD COPY Dockerfile *plugins.yml /tmp/tof-buildtools/
|
|
ONBUILD RUN java -jar /tmp/tof-buildtools/BuildTools.jar \
|
|
--config "/tmp/tof-buildtools/plugins.yml" \
|
|
--configs "plugins.yml" \
|
|
--dir "/tmp/tof-buildtools/" \
|
|
--output ${BUILDTOOLS_OUTPUT} && \
|
|
chown -R minecraft:minecraft ${BUILDTOOLS_OUTPUT} && \
|
|
rm -fR /tmp/tof-buildtools/
|
|
|
|
COPY mcadmin.jq /usr/share
|
|
RUN chmod +x /usr/local/bin/*
|
|
|
|
VOLUME ["/data","/mods","/config"]
|
|
COPY server.properties /tmp/server.properties
|
|
WORKDIR /data
|
|
|
|
ENTRYPOINT [ "/start" ]
|
|
|
|
ENV UID=1000 GID=1000 \
|
|
JVM_XX_OPTS="-XX:+UseG1GC" MEMORY="1G" \
|
|
TYPE=VANILLA VERSION=LATEST FORGEVERSION=RECOMMENDED SPONGEBRANCH=STABLE SPONGEVERSION= LEVEL=world \
|
|
PVP=true DIFFICULTY=easy ENABLE_RCON=true RCON_PORT=25575 RCON_PASSWORD=minecraft \
|
|
LEVEL_TYPE=DEFAULT GENERATOR_SETTINGS= WORLD= MODPACK= MODS= SERVER_PORT=25565 ONLINE_MODE=TRUE CONSOLE=true
|
|
|
|
COPY start* /
|
|
RUN dos2unix /start* && chmod +x /start*
|