Compare commits

...

28 Commits

Author SHA1 Message Date
Salt 1999a0c0d0 Remove the -a flag from our rsync
We really don't care about source perms, as it turns out
2022-06-14 13:56:39 -05:00
Salt 59a75d1d3e Add a tiny bit more logging before that rsync 2022-05-26 22:12:18 -05:00
Salt eca3af7ffb Add findutils, be less verbose for easier log parsing 2022-05-26 22:05:42 -05:00
Salt 533ceb2c2e Add a patch to make sure we don't recursively copy root around 2022-05-26 21:59:36 -05:00
Salt 01d9af75f0 Add curl
oposie wopsie
2022-05-26 21:49:29 -05:00
Salt c9d54cc46d Add link to DH in README 2022-05-17 11:34:13 -05:00
Salt 025d88f7e0 Fix JRE_VERSION being unscoped in the final stage 2022-05-17 11:33:48 -05:00
Salt a107b4b76e Explicitly set progress to plain for easier debugging, label the final stage of the build 2022-05-17 11:24:15 -05:00
Salt d410061076 Add some more flawed changes to the Dockerfile to debug JRE_VERSION 2022-05-17 11:22:36 -05:00
Salt 2a860d745d Add some flawed changes to build.sh to try and debug JRE_VERSION 2022-05-17 11:22:22 -05:00
Salt e655849b38 set -e in the build script so it stops eating errors 2022-05-17 11:12:16 -05:00
Salt 904bd4ea78 Change README to point to a tag that actually exists 2022-05-17 11:11:21 -05:00
Salt 322b6f359d Use Alpine instead of the OpenJDK upstream image
Thinner and actually respects that JRE_VERSION var we added
2022-05-17 11:07:10 -05:00
Salt 4236f531da Add a line to the README about how I... don't really use tags all that often 2022-05-17 11:01:35 -05:00
Salt 76f8fc6644 Add LICENSE 2022-05-17 10:59:40 -05:00
Salt c480cd4abd Touch up that README, make it more parseable 2022-05-17 10:58:51 -05:00
Salt f62c82e61a Modularize the addition of OpenJDK, enabling branch convergence 2022-05-17 10:53:13 -05:00
Salt 18994698db Merge branch 'openjdk11' 2022-05-17 10:43:42 -05:00
Salt 614818ba04 Update 1.16 forge, add 1.18 forge 2022-05-17 10:42:15 -05:00
Salt a35c565148 Okay, really change forge version 2022-02-09 17:10:26 -06:00
Salt 6dfd52c7d9 Bump Forge ver 2022-02-09 15:57:14 -06:00
Salt b4fc6a2654 Merge branch 'openjdk11' of gitlab.com:rehashedsalt/docker-minecraft into openjdk11 2022-01-02 10:59:00 -06:00
Salt 7879f3b5e4 Add little helper line to the Docker log output to assist in usability 2022-01-02 10:57:28 -06:00
Salt 2e03a1faf8 Update Forge for 1.16
I uh... hope this fixes the log4j issue
2021-12-20 12:26:22 -06:00
Salt bd2041a886 Ignore existing files when unpacking server zippies 2021-11-06 14:28:07 -05:00
Salt 82715dcd5b Ignore existing files when unpacking server zippies 2021-11-06 14:27:29 -05:00
Salt 2fba83fd15 Add the ability to define a configuration repo that's also live-downloaded 2021-05-29 14:22:53 -05:00
Salt c50a4b4176 Attempt a build on ojdk11 2021-05-24 21:46:29 -05:00
5 changed files with 79 additions and 19 deletions

View File

@ -1,23 +1,34 @@
# Args
ARG MINECRAFT_VERSION="1.16.5"
ARG FORGE_VERSION="36.2.26"
ARG JRE_VERSION="openjdk8-jre"
# The first stage just builds up the modpack
FROM alpine:latest AS build
# Args
ARG MINECRAFT_VERSION="1.16.5"
ARG FORGE_VERSION="36.1.13"
# Use all of our arguments
ARG MINECRAFT_VERSION
ARG FORGE_VERSION
ARG JRE_VERSION
# The actual setup work
# Build us up the basics of the Minecraft server environment
COPY start-server.sh /minecraft/start-server.sh
WORKDIR /minecraft
RUN apk add curl openjdk8-jre &&\
RUN apk add curl "${JRE_VERSION}" &&\
curl -L "https://files.minecraftforge.net/maven/net/minecraftforge/forge/${MINECRAFT_VERSION}-${FORGE_VERSION}/forge-${MINECRAFT_VERSION}-${FORGE_VERSION}-installer.jar" -o installer.jar &&\
java -jar installer.jar --installServer &&\
echo "eula=true" > eula.txt &&\
rm installer.jar installer.jar.log && \
ln -s "forge-${MINECRAFT_VERSION}-${FORGE_VERSION}.jar" server.jar
# The second stage is the actual container
FROM openjdk:8
RUN apt-get update && apt-get install rsync screen -y
# Stuff them in a smaller container with fewer layers
FROM alpine:latest AS final
# Use only a subset of arguments
ARG JRE_VERSION
# Build the thing up
RUN apk add bash curl findutils rsync screen "${JRE_VERSION}"
WORKDIR /minecraft
COPY --from=build /minecraft .
CMD [ "bash", "start-server.sh" ]

7
LICENSE Normal file
View File

@ -0,0 +1,7 @@
Copyright 2021 Salt
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -7,12 +7,22 @@ A Dockerfile and some assorted scripts to build a Minecraft Forge server contain
Deploy as expected:
```bash
docker run -p 25565:25565 rehashedsalt/minecraft-forge:1.16.5-36.1.4-1.0.0
docker run -p 25565:25565 rehashedsalt/minecraft-forge:1.16.5-36.2.35-openjdk11-jre-master
```
And badda bing, badda boom, you'll have a Minecraft Forge server of whatever the tag is.
The "latest" tag of each version of Minecraft is somewhere along the lines of "1.16.5-36.1.14-master". See Dockerhub for more info.
The tag looks long and unweildy, but it's just this:
```
rehashedsalt/minecraft-forge:${MINECRAFT_VERSION}-${FORGE_VERSION}-${OPENJDK_VERSION}-${BRANCH_OR_TAG_NAME}
```
You can see what the supported combinations of tags are by looking them up in `build.sh`. Each version only supports one edition of Java and one edition of Forge. Getting CI/CD to automagically determine the latest version of Forge is on the to-do list.
Admittedly, I don't use tags very often. You'd do well to target `master` as the refname if you want bleeding edge stuff.
Full list of tags is available on [Dockerhub](https://hub.docker.com/r/rehashedsalt/minecraft-forge/tags).
## Server Console
@ -48,6 +58,8 @@ The following arguments may be useful to pass through `$ARGS` from time to time:
* `-Dfml.queryResult=confirm` - Useful when confirming through world corruption
* Consider [this advice from a Forge dev](https://old.reddit.com/r/feedthebeast/comments/5jhuk9/modded_mc_and_memory_usage_a_history_with_a/) (circa 5+ years ago but still pretty relevant)
## Weird Defaults
The default `server.properties` contains the following changes to better facilitate usage in a modded environment:

View File

@ -2,31 +2,52 @@
#
# Build the Docker image for a series of different Forge versions
#
set -e
# MC version list
declare -a mcversions=(
readonly -a mcversions=(
"1.12.2"
"1.16.5"
"1.18.2"
)
# Forge version dictionary (we only support one version per)
declare -A forgeversions=(
readonly -A forgeversions=(
["1.12.2"]="14.23.5.2855"
["1.16.5"]="36.1.13"
["1.16.5"]="36.2.35"
["1.18.2"]="40.1.20"
)
# JRE versions (in the form of Alpine packages)
readonly -A jreversions=(
["1.12.2"]="openjdk8-jre"
["1.16.5"]="openjdk11-jre"
["1.18.2"]="openjdk11-jre"
)
# Build images
docker buildx create --use
for mc in ${mcversions[@]}; do
forge="${forgeversions[$mc]}"
echo "Building image for Minecraft $mc, Forge $forge, CI_COMMIT_REF_NAME of $CI_COMMIT_REF_NAME"
jre="${jreversions[$mc]}"
CI_HUB_USERNAME="${CI_HUB_USERNAME:=rehashedsalt}"
CI_PROJECT_NAME="${CI_PROJECT_NAME:=minecraft-forge}"
tag="$CI_HUB_USERNAME/$CI_PROJECT_NAME:$mc-$forge-$jre-${CI_COMMIT_REF_NAME:=bleeding}"
echo "Building image..."
echo " Minecraft: $mc"
echo " Forge: $forge"
echo " JRE: $jre"
echo " Ref: $CI_COMMIT_REF_NAME"
echo "Dockerhub tag: $tag"
# --no-cache is required for clean builds
docker buildx build \
--build-arg MINECRAFT_VERSION="$mc" \
--build-arg FORGE_VERSION="$forge" \
--build-arg JRE_VERSION="$jre" \
--no-cache \
--platform linux/amd64 \
--tag "$CI_HUB_USERNAME/$CI_PROJECT_NAME:$mc-$forge-${CI_COMMIT_REF_NAME:=bleeding}" \
--progress plain \
--tag "$tag" \
--push \
.
done

View File

@ -13,10 +13,16 @@ if [ -n "$FORGE_PACK_ZIP" ]; then
tmpdir="$(mktemp -d)"
pushd "$tmpdir" > /dev/null 2>&1
curl -L "$FORGE_PACK_ZIP" -o pack.zip
unzip pack.zip
unzip -q pack.zip
ls -alh
directory="$(find . -type d -iname "mods" -execdir pwd \; | sort -n | head -n 1)"
echo "Found modpack directory: $directory"
rsync -av "$directory"/ /minecraft/
if [ -z "$directory" ]; then
echo "Unable to find mods directory"
else
echo "Found modpack directory: $directory"
fi
echo "Syncing content to /minecraft"
rsync --ignore-existing "$directory"/ /minecraft/
popd > /dev/null 2>&1
fi
@ -27,7 +33,7 @@ if [ -n "$CONFIG_REPO" ]; then
pushd "$tmpdir" > /dev/null 2>&1
git clone "$CONFIG_REPO" .
rm -rf .git
rsync -av ./ /minecraft/
rsync -av --delete ./ /minecraft/
popd > /dev/null 2>&1
fi
@ -42,6 +48,9 @@ args="-jar server.jar nogui"
# Debugging info
java -version
echo "Invoking java with args: $args"
echo
echo "To see the server console, execute this command in the container:"
echo " screen -r minecraft"
# Start 'er up
cleanup() {