LeagueSandbox
GamesA simple egg to run LeagueSandbox server in pterodactyl
README
League Sandbox
From their Github
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.jsonCONTENT_PATHto justContent/home/container/Settings/GameServerSettings.jsonautoStartClienttofalse
Server Ports
Ports required to run the server in a table format.
| Port | default |
|---|---|
| Game | 5119 |
Docker Images (1)
| Name | Image |
|---|---|
ghcr.io/ptero-eggs/yolks:dotnet_6 | ghcr.io/ptero-eggs/yolks:dotnet_6 |
Startup Command
./GameServerConsole --port {{SERVER_PORT}} Variables (0)
Installation Script
Container:
bitnami/dotnet-sdk:6-debian-11Entrypoint:
bash#!/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"