Egg Repository

Pterodactyl Community Egg Repository

LeagueSandbox

A simple egg to run LeagueSandbox server in pterodactyl

Read Me

League Sandbox

From their Github

Build status Build Status

Project website along with more specifications can be found from: https://leaguesandbox.github.io/

Project chat on Discord: https://discord.gg/Bz3znAM

Install notes

Post install you are required to set

  • /home/container/Settings/GameInfo.json CONTENT_PATH to just Content
  • /home/container/Settings/GameServerSettings.json autoStartClient to false

Server Ports

Ports required to run the server in a table format.

Port default
Game 5119
Yolks
NameTag
ghcr.io/ptero-eggs/yolks:dotnet_6ghcr.io/ptero-eggs/yolks:dotnet_6
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Install Script
#!/bin/bash

apt update
apt install -y zip unzip jq curl wget git

mkdir -p /mnt/server
cd /mnt/server

git clone https://github.com/LeagueSandbox/GameServer.git
rm .git -rf

cd GameServer/

git submodule init
git submodule update

dotnet build .
cp -r GameServerConsole/bin/Debug/net6.0/* /mnt/server/
cp -r Content /mnt/server/Content
echo "done"