Tekkit

Games
Report Issue

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.

Contributors:
README

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.

Port default
Game 25565
Docker Images (1)
Name Image
Java 8 ghcr.io/ptero-eggs/yolks:java_8
Startup Command
java -Xms128M -Xmx{{SERVER_MEMORY}}M -jar Tekkit.jar
Variables (1)

Modpack Version

Environment:
MODPACK_VERSION
Default:
v1.2.9g-2
User Viewable:
User Editable:
Rules:
required|string|max:20
Installation Script
Container: ghcr.io/ptero-eggs/installers:alpine
Entrypoint: ash
#!/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 "-----------------------------------------"