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.
The Rage-MP GTA 5 dedicated server RAGE Multiplayer is an multiplayer modification for Grand Theft Auto V that is alternative to GTA Online.
Warband requires a 2 ports (default 22005, 22006)
| Port | default |
|---|---|
| Game | 22005 |
| http | 22006 |
| Name | Tag |
|---|---|
| ghcr.io/ptero-eggs/yolks:debian | ghcr.io/ptero-eggs/yolks:debian |
Server name that will be displayed to the master server. (64 Char max)
Maximum number of players your server will hold. (Max 100)
#!/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| Installation Image | ghcr.io/ptero-eggs/installers:debian | Installation Entrypoint | bash |
|---|