Egg Repository

Pterodactyl Community Egg Repository

Tekkit Classic

Created by the Technic team, Tekkit Classic is a modpack for the record breaking sandbox construction game Minecraft. It brings together some of the best mods from the Minecraft community for automating, industrializing and powering your worlds and bundles them into one easy download!

Read Me

Minecraft: Tekkit classic

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
Yolks
NameTag
Java 8ghcr.io/ptero-eggs/yolks:java_8
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Modpack VersionMODPACK_VERSION3.1.2YesYes
Install Script
#!/bin/ash
# Forge Installation Script
#
# Server Files: /mnt/server
cd /mnt/server

curl -sS https://servers.technicpack.net/Technic/servers/tekkit/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 "-----------------------------------------"