Those of you who are nostalgic for the early days of Tekkit (now known as Tekkit Classic), will love what awaits you in Tekkit 2! With a collection of nostalgic mods and plenty of new improvements, Tekkit 2 is sure to capture the feeling of possibility and consequence that you felt while exploring the world of machines and contraptions that made the original fun. Keep an eye out for classics such as IndustrialCraft, ProjectE (Equivalent Exchange), Project Red (RedPower) and BuildCraft, alongside additions such as Galacticraft and Tekkit Jaffa Cakes! The world is yours to bend and exploit to your will, whether through alchemy or sprawling factories and mines. What fresh horrors will you create?
The minecraft server requires a single port for access (default 25565) but plugins may require extra ports to enabled for the server.
Port | default |
---|---|
Game | 25565 |
Name | Tag |
---|---|
Java 8 | ghcr.io/ptero-eggs/yolks:java_8 |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Modpack Version | MODPACK_VERSION | v1.0.5 | Yes | Yes |
#!/bin/ash
# Tekkit Installation Script
#
# Server Files: /mnt/server
apt update
apt -y install curl zip unzip
mkdir -p /mnt/server
cd /mnt/server
curl -sSL https://servers.technicpack.net/Technic/servers/tekkit-2/Tekkit-2_Server_$MODPACK_VERSION.zip -o Tekkit-2_Server_$MODPACK_VERSION.zip
unzip -o Tekkit-2_Server_$MODPACK_VERSION.zip
rm -rf Tekkit-2_Server_$MODPACK_VERSION.zip
rm RestoreBackup.bat
rm LaunchServer.bat
rm LaunchServer.sh
rm RestoreBackup.sh
mv forge-1.12.2-*.jar forge.jar
if [ ! -f server.properties ]; then
echo -e "Downloading MC server.properties"
curl -o server.properties https://raw.githubusercontent.com/ptero-eggs/game-eggs/main/minecraft/java/server.properties
fi
echo "done"