Added papermc; updated fabric files

pull/3/head
Jef Roosens 2020-12-30 12:53:37 +01:00
parent 988420f915
commit a6e5d39811
4 changed files with 90 additions and 17 deletions

View File

@ -1,30 +1,31 @@
FROM openjdk:8-jre FROM openjdk:8-slim
# This argument should be set when building # Build arguments
ARG VERSION ARG FABRIC_VERSION
ARG JAR_URL="https://maven.fabricmc.net/net/fabricmc/fabric-installer/$VERSION/fabric-installer-$VERSION.jar"
# Create worlds and config directory
WORKDIR /mc WORKDIR /mc
RUN mkdir worlds config
# Download installer jar # Download installer jar
ADD "https://maven.fabricmc.net/net/fabricmc/fabric-installer/$VERSION/fabric-installer-$VERSION.jar" fabric-installer.jar ADD "https://maven.fabricmc.net/net/fabricmc/fabric-installer/$FABRIC_VERSION/fabric-installer-$FABRIC_VERSION.jar" fabric-installer.jar
# Install fabric, sign eula & remove installer # Install fabric, sign eula & remove installer
RUN java -jar fabric-installer.jar server -downloadMinecraft && \ RUN java -jar fabric-installer.jar server -downloadMinecraft && \
rm fabric-installer.jar && \ rm fabric-installer.jar
echo "eula=true" > eula.txt
# Store the cache in an anonymous volume, which means it won't get stored in the other volumes # Store the cache in an anonymous volume, which means it won't get stored in the other volumes
VOLUME /mc/config/cache VOLUME /mc/config/cache
WORKDIR /mc/config
# Default value to keep users from eating up all ram accidentally # Default value to keep users from eating up all ram accidentally
ENV XMS=4 ENV XMS=4
WORKDIR /mc/config # We copy over the server jar(s) as well to make the backup more reproducible to deploy
# Source for flags: ENTRYPOINT mv -n /mc/*.jar /mc/config && \
# https://aikar.co/2018/07/02/tuning-the-jvm-g1gc-garbage-collector-flags-for-minecraft/ echo "eula=true" > /mc/config/eula.txt && \
# Certain flags auto-scale if XMS is greater than 12 (see link for info) java \
ENTRYPOINT mv -n /mc/*.jar /mc/config && java \
-Xms"${XMS}G" \ -Xms"${XMS}G" \
-Xmx"${XMX:-$XMS}G" \ -Xmx"${XMX:-$XMS}G" \
-XX:+UseG1GC \ -XX:+UseG1GC \
@ -50,4 +51,3 @@ ENTRYPOINT mv -n /mc/*.jar /mc/config && java \
-jar fabric-server-launch.jar \ -jar fabric-server-launch.jar \
--universe /mc/worlds \ --universe /mc/worlds \
--nogui --nogui

View File

@ -4,7 +4,7 @@ services:
build: build:
context: . context: .
args: args:
- 'VERSION=0.6.1.51' - 'FABRIC_VERSION=0.6.1.51'
image: 'mc-fabric-server:latest' image: 'mc-fabric-server:latest'
restart: 'unless-stopped' restart: 'unless-stopped'
@ -17,6 +17,6 @@ services:
ports: ports:
- '25565:25565' - '25565:25565'
volumes: volumes:
- '/data/config:/mc/config' - '/data/mc/fabric/config:/mc/config'
- '/data/mods:/mc/config/mods' - '/data/mc/fabric/mods:/mc/config/mods'
- '/data/worlds:/mc/worlds' - '/data/mc/fabric/worlds:/mc/worlds'

50
papermc/Dockerfile 100644
View File

@ -0,0 +1,50 @@
FROM openjdk:8-slim
# Build arguments
ARG MC_VERSION
ARG PAPERMC_VERSION
# Create worlds and config directory
WORKDIR /mc
RUN mkdir worlds config
# Download server file
ADD "https://papermc.io/api/v1/paper/$MC_VERSION/$PAPERMC_VERSION/download" server.jar
# Store the cache in an anonymous volume, which means it won't get stored in the other volumes
VOLUME /mc/config/cache
WORKDIR /mc/config
# Default value to keep users from eating up all ram accidentally
ENV XMS=4
# We copy over the server jar(s) as well to make the backup more reproducible to deploy
ENTRYPOINT mv -n /mc/*.jar /mc/config && \
echo "eula=true" > /mc/config/eula.txt && \
java \
-Xms"${XMS}G" \
-Xmx"${XMX:-$XMS}G" \
-XX:+UseG1GC \
-XX:+ParallelRefProcEnabled \
-XX:MaxGCPauseMillis=200 \
-XX:+UnlockExperimentalVMOptions \
-XX:+DisableExplicitGC \
-XX:+AlwaysPreTouch \
-XX:G1NewSizePercent="$([ $XMS -gt 12 ] && echo 40 || echo 30)" \
-XX:G1MaxNewSizePercent="$([ $XMS -gt 12 ] && echo 50 || echo 40)" \
-XX:G1HeapRegionSize="$([ $XMS -gt 12 ] && echo 16 || echo 8)"M \
-XX:G1ReservePercent="$([ $XMS -gt 12 ] && echo 15 || echo 20)" \
-XX:G1HeapWastePercent=5 \
-XX:G1MixedGCCountTarget=4 \
-XX:InitiatingHeapOccupancyPercent="$([ $XMS -gt 12 ] && echo 20 || echo 15)" \
-XX:G1MixedGCLiveThresholdPercent=90 \
-XX:G1RSetUpdatingPauseTimePercent=5 \
-XX:SurvivorRatio=32 \
-XX:+PerfDisableSharedMem \
-XX:MaxTenuringThreshold=1 \
-Dusing.aikars.flags=https://mcflags.emc.gs \
-Daikars.new.flags=true \
-jar /mc/server.jar \
--universe /mc/worlds \
--nogui

View File

@ -0,0 +1,23 @@
version: "3.5"
services:
papermc:
build:
context: .
dockerfile: Dockerfile
args:
- 'MC_VERSION='
- 'PAPERMC_VERSION='
image: 'mc-papermc-server:latest'
restart: unless-stopped
stdin_open: true
tty: true
environment:
- XMS=4
- XMX=4
ports:
- '25565:25565'
volumes:
- '/data/mc/papermc/worlds:/minecraft/worlds'
- '/data/mc/papermc/config:/minecraft/config'