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.

Portdefault
Game25565
Yolks
NameTag
Java 8ghcr.io/ptero-eggs/yolks:java_8
Variables and Startup

Startup Command

java -Xms128M -Xmx{{SERVER_MEMORY}}M -jar Tekkit.jar

Variables

Modpack Version

Environment Variable: MODPACK_VERSION
Default Value: 3.1.2
User Viewable:
User Editable:
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 "-----------------------------------------"
Installation Imageghcr.io/ptero-eggs/installers:alpineInstallation Entrypointash