Tekkit Classic
gamesCreated 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!
README
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 |
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:
3.1.2- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|max:20
Installation Script
Container:
ghcr.io/ptero-eggs/installers:alpineEntrypoint:
ash#!/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 "-----------------------------------------"