Egg Repository

Pterodactyl Community Egg Repository

Rage.MP

https://rage.mp/ Modified to work with the latest version of RAGE:MP Will automatically install linux bridge. **This server requires 2 ports to be added for the server. the main port and the next (port+1) as ports for the server.

Read Me

Grand Theft Auto

GTA V

FiveM FiveM is a modification for Grand Theft Auto V enabling you to play multiplayer on customized dedicated servers.

ragecoop ragecoop Drive around the interstate with your buddy, enjoy GTAs environment, make own missions and events or just chill in Grove Street! 🌐

Rage MP RAGE Multiplayer is an multiplayer modification for Grand Theft Auto V that is alternative to GTA Online.

alt:V alt:V Multiplayer a third-party multiplayer modification for Grand Theft Auto: V

San Andreas

GTA SA:MP SA-MP is a free Massively Multiplayer Online game mod for the PC version of Rockstar Games Grand Theft Auto: San Andreas (tm).

OpenMp A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.

MTA SA What more could you want? Multi Theft Auto provides the best online Grand Theft Auto experience there is. Read on to find out more.

GTAC

GTAC The Grand Theft Auto Connected is a custom scriptable multiplayer modification for multiple Grand Theft Auto games.

Yolks
NameTag
ghcr.io/ptero-eggs/yolks:debianghcr.io/ptero-eggs/yolks:debian
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Server NameServer name that will be displayed to the master server. (64 Char max)SERVER_NAMERAGE:MP Unofficial serverYesYes
Max PlayersMaximum number of players your server will hold. (Max 100)MAX_PLAYERS50YesNo
Install Script
#!/bin/bash

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

rm -rf bin/
rm -rf dotnet/
rm ragemp-server

cd /mnt/server/tmp
echo "Downloading rage.mp"
curl -sSL -o linux_x64.tar.gz https://cdn.rage.mp/updater/prerelease/server-files/linux_x64.tar.gz
tar -xzvf linux_x64.tar.gz
rm linux_x64.tar.gz
cd /mnt/server/tmp/ragemp-srv/
mv * /mnt/server

cd /mnt/server
chmod +x ./ragemp-server
rm -rf /mnt/server/tmp

if [ -e conf.json ]; then
    echo "server config file exists"
else
    echo "Downloading default rage.mp config"
    curl https://raw.githubusercontent.com/ptero-eggs/game-eggs/main/gta/ragemp/conf.json >> conf.json
fi

echo "install complete"

exit 0