Standalone server program Limbo.
The Limbo server requires a single port for access (default 25565).
| Port | default |
|---|---|
| Game | 25565 |
| Name | Tag |
|---|---|
| ghcr.io/pterodactyl/yolks:java_17 | ghcr.io/pterodactyl/yolks:java_17 |
The name of the server jarfile to run the Limbo server with.
#!/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| Installation Image | ghcr.io/ptero-eggs/installers:alpine | Installation Entrypoint | ash |
|---|