Rage.MP

games
Report Issue

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.

Contributors:
README

Rage-MP

The Rage-MP GTA 5 dedicated server RAGE Multiplayer is an multiplayer modification for Grand Theft Auto V that is alternative to GTA Online.

Server Ports

Warband requires a 2 ports (default 22005, 22006)

Port default
Game 22005
http 22006
Docker Images (1)
Name Image
ghcr.io/ptero-eggs/yolks:debian ghcr.io/ptero-eggs/yolks:debian
Startup Command
./ragemp-server
Variables (2)

Server Name

Server name that will be displayed to the master server. (64 Char max)

Environment:
SERVER_NAME
Default:
RAGE:MP Unofficial server
User Viewable:
User Editable:
Rules:
required|string|max:64

Max Players

Maximum number of players your server will hold. (Max 100)

Environment:
MAX_PLAYERS
Default:
50
User Viewable:
User Editable:
Rules:
required|integer|between:1,100
Installation Script
Container: ghcr.io/ptero-eggs/installers:debian
Entrypoint: bash
#!/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