Tekkit 2

Games
Report Issue

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?

Contributors:
README

Minecraft: Tekkit 2

Server Ports

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
Docker Images (1)
Name Image
Java 8 ghcr.io/ptero-eggs/yolks:java_8
Startup Command
java -server  -Xms128M -Xmx{{SERVER_MEMORY}}M -Dfml.queryResult=confirm -jar forge.jar nogui
Variables (1)

Modpack Version

Environment:
MODPACK_VERSION
Default:
v1.0.5
User Viewable:
User Editable:
Rules:
required|string|max:10
Installation Script
Container: ghcr.io/ptero-eggs/installers:debian
Entrypoint: bash
#!/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"