Project website along with more specifications can be found from: https://leaguesandbox.github.io/
Project chat on Discord: https://discord.gg/Bz3znAM
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
Ports required to run the server in a table format.
Port | default |
---|---|
Game | 5119 |
Name | Tag |
---|---|
ghcr.io/ptero-eggs/yolks:dotnet_6 | ghcr.io/ptero-eggs/yolks:dotnet_6 |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|
#!/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"