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!
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 |
Name | Tag |
---|---|
Java 8 | ghcr.io/ptero-eggs/yolks:java_8 |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Modpack Version | MODPACK_VERSION | 3.1.2 | Yes | Yes |
#!/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 "-----------------------------------------"