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.
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 | v1.2.9g-2 | Yes | Yes |
#!/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 "-----------------------------------------"