Compare commits

..

2 Commits

Author SHA1 Message Date
Matthew Tran
9b45cea6fd update tmodloader v2025.05.3.0 2025-07-03 23:38:41 -07:00
Matthew Tran
fe689df277 update minecraft 1.21.7 2025-07-03 22:31:24 -07:00
2 changed files with 4 additions and 4 deletions

View File

@ -9,8 +9,8 @@ WORKDIR /root
RUN wget -O rcon-cli.tar.gz https://github.com/itzg/rcon-cli/releases/download/1.7.0/rcon-cli_1.7.0_linux_amd64.tar.gz
RUN tar xvf rcon-cli.tar.gz && rm rcon-cli.tar.gz
# from https://www.minecraft.net/en-us/download/server (currently 1.21.6)
RUN wget https://piston-data.mojang.com/v1/objects/6e64dcabba3c01a7271b4fa6bd898483b794c59b/server.jar
# from https://www.minecraft.net/en-us/download/server (currently 1.21.7)
RUN wget https://piston-data.mojang.com/v1/objects/05e4b48fbc01f0385adb74bcff9751d34552486c/server.jar
COPY entry.sh ./
COPY eula.txt ./

View File

@ -5,8 +5,8 @@ RUN apt-get install -y wget unzip python3 iproute2 dotnet-runtime-8.0
WORKDIR /root
# from https://github.com/tModLoader/tModLoader/releases (currently v2025.03.3.1)
RUN wget https://github.com/tModLoader/tModLoader/releases/download/v2025.03.3.1/tModLoader.zip
# from https://github.com/tModLoader/tModLoader/releases (currently v2025.05.3.0)
RUN wget https://github.com/tModLoader/tModLoader/releases/download/v2025.05.3.0/tModLoader.zip
RUN unzip tModLoader.zip -d server && rm tModLoader.zip
RUN chmod +x server/start-tModLoaderServer.sh