update to 2.8

This commit is contained in:
Roger 2024-12-20 22:10:31 -05:00
parent 53671d42b0
commit f9c690b66a
3 changed files with 8 additions and 6 deletions

View file

@ -2,7 +2,7 @@
FROM openjdk:21-buster
LABEL version="2.7"
LABEL version="2.8"
RUN apt-get update && apt-get install -y curl unzip jq && \
adduser --uid 99 --gid 100 --home /data --disabled-password minecraft

View file

@ -1,4 +1,4 @@
# [All the Mods 10-2.7](https://www.curseforge.com/minecraft/modpacks/all-the-mods-10) on Curseforge
# [All the Mods 10-2.8](https://www.curseforge.com/minecraft/modpacks/all-the-mods-10) on Curseforge
<!-- toc -->
- [Description](#description)
@ -17,7 +17,7 @@
This container is built to run on an [Unraid](https://unraid.net) server, outside of that your milliage will vary.
The docker on first run will download the same version as tagged of `All the Mods 10-2.7` and install it. This can take a while as the Forge installer can take a bit to complete. You can watch the logs and it will eventually finish.
The docker on first run will download the same version as tagged of `All the Mods 10-2.8` and install it. This can take a while as the Forge installer can take a bit to complete. You can watch the logs and it will eventually finish.
After the first run it will simply start the server.
@ -36,7 +36,7 @@ As the end user, you are repsonsible for accepting the EULA from Mojang to run t
These environment variables can be set to override their defaults.
* JVM_OPTS "-Xms2048m -Xmx4096m"
* MOTD "All the Mods 10-2.7 Server Powered by Docker"
* MOTD "All the Mods 10-2.8 Server Powered by Docker"
* ENABLE_WHITELIST "true" or "false"
* WHITELIST_USERS "TestUserName1, TestUserName2"
* OP_USERS "TestUserName1, TestUserName2"

View file

@ -1,9 +1,11 @@
#!/bin/bash
https://www.curseforge.com/minecraft/modpacks/all-the-mods-10/download/6009 060
set -x
NEOFORGE_VERSION=21.1.90
SERVER_VERSION=2.7
SERVER_VERSION=2.8
cd /data
if ! [[ "$EULA" = "false" ]]; then
@ -15,7 +17,7 @@ fi
if ! [[ -f "Server-Files-$SERVER_VERSION.zip" ]]; then
rm -fr config defaultconfigs kubejs mods packmenu Simple.zip forge*
curl -Lo "Server-Files-$SERVER_VERSION.zip" 'https://edge.forgecdn.net/files/6006/513/Server-Files-2.7.zip' || exit 9
curl -Lo "Server-Files-$SERVER_VERSION.zip" 'https://edge.forgecdn.net/files/6009/060/Server-Files-2.8.zip' || exit 9
unzip -u -o "Server-Files-$SERVER_VERSION.zip" -d /data
DIR_TEST=$(find . -type d -maxdepth 1 | tail -1 | sed 's/^.\{2\}//g')
if [[ $(find . -type d -maxdepth 1 | wc -l) -gt 1 ]]; then