Egg Repository

Pterodactyl Community Egg Repository

Tekkit

Tekkit is set to reignite the same sort of wonder and awe that we all received from booting up Minecraft for the first time. With the skies open, the moon ready to be colonized (by force if need be) and dimensional mysteries to be plied, with tesseracts to be networked, “meat” to be processed, items to be digitized, and power suits to be manufactured, there is virtually limitless engineering projects to be assembled.

Read Me

Minecraft: Tekkit

Server Ports

The minecraft server requires a single port for access (default 25565) but plugins may require extra ports to enabled for the server.

Portdefault
Game25565
Yolks
NameTag
Java 8ghcr.io/ptero-eggs/yolks:java_8
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Modpack VersionMODPACK_VERSIONv1.2.9g-2YesYes
Install Script
#!/bin/ash
# Forge Installation Script
#
# Server Files: /mnt/server

cd /mnt/server

curl -sSL https://servers.technicpack.net/Technic/servers/tekkitmain/Tekkit_Server_$MODPACK_VERSION.zip -o Tekkit_Server_$MODPACK_VERSION.zip

unzip Tekkit_Server_$MODPACK_VERSION.zip

rm -rf Tekkit_Server_$MODPACK_VERSION.zip

rm launch.bat

rm launch.sh

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

## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"