README
Limbo
Standalone server program Limbo.
Server Ports
The Limbo server requires a single port for access (default 25565).
| Port | default |
|---|---|
| Game | 25565 |
Docker Images (1)
| Name | Image |
|---|---|
ghcr.io/pterodactyl/yolks:java_17 | ghcr.io/pterodactyl/yolks:java_17 |
Startup Command
java -Xms128M -XX:MaxRAMPercentage=95.0 -jar {{SERVER_JARFILE}} Variables (1)
Server Jar File
The name of the server jarfile to run the Limbo server with.
- Environment:
SERVER_JARFILE- Default:
Limbo.jar- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|regex:/^([\w\d._-]+)(\.jar)$/
Installation Script
Container:
ghcr.io/ptero-eggs/installers:alpineEntrypoint:
ash#!/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