Egg Repository

Pterodactyl Community Egg Repository

Limbo

Standalone server program Limbo.

Read Me

Limbo

Standalone server program Limbo.

Limbo Github

Server Ports

The Limbo server requires a single port for access (default 25565).

Port default
Game 25565
Yolks
NameTag
ghcr.io/pterodactyl/yolks:java_17ghcr.io/pterodactyl/yolks:java_17
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Server Jar FileThe name of the server jarfile to run the Limbo server with.SERVER_JARFILELimbo.jarYesYes
Install Script
#!/bin/ash
# Limbo Installation Script
#
# Server Files: /mnt/server
mkdir -p /mnt/server

LATEST_LIMBO_NAME=$(curl -s https://ci.loohpjames.com/job/Limbo/lastSuccessfulBuild/api/json | jq -r .artifacts[1].displayPath)

cd /mnt/server || exit

if [ -f "${SERVER_JARFILE}" ]; then
	mv "${SERVER_JARFILE}" "${SERVER_JARFILE}".old
fi

echo "Downloading Limbo server jar..."
curl -o "${SERVER_JARFILE}" https://ci.loohpjames.com/job/Limbo/lastSuccessfulBuild/artifact/target/$LATEST_LIMBO_NAME

if [ ! -f server.properties ]; then
    echo "Downloading Limbo server.properties"
    curl -o server.properties https://raw.githubusercontent.com/LOOHP/Limbo/master/src/main/resources/server.properties
fi