structure changes and update fixes & testing new base image
Some checks failed
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 13s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push forge (push) Successful in 1m10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 1m21s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing (push) Failing after 1m35s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 1m1s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push bukkit (push) Successful in 2m37s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Has been skipped
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Has been skipped

This commit is contained in:
2025-12-20 08:12:24 -08:00
parent e9874e712b
commit ddf6461d89
33 changed files with 28 additions and 641 deletions

View File

@@ -23,7 +23,6 @@ if [ -e $MC_DIR/MCserver-$MC_VERSION.jar ]
echo "INFO ! Cleaning old files."
mkdir $MC_DIR/old-server-versions/
mv $MC_DIR/MCserver-*.jar $MC_DIR/old-server-versions/
mv $MC_DIR/run-*.sh $MC_DIR/old-server-versions/
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_SERVER_FILE -O $MC_DIR/MCserver-$MC_VERSION.jar
chmod +x $MC_DIR/MCserver-$MC_VERSION.jar
fi
@@ -36,7 +35,7 @@ if [ -e $MC_DIR/run-$MC_VERSION.sh ]
else
echo " "
echo "WARNING ! run.sh is out of date/missing ... will download now."
rm -fr $MC_DIR/run_*.sh
mv $MC_DIR/run-*.sh $MC_DIR/old-server-versions/
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_RUN_FILE -O $MC_DIR/run-$MC_VERSION.sh
chmod +x $MC_DIR/run-$MC_VERSION.sh
fi