Egg Repository

Pterodactyl Community Egg Repository

OpenRA

OpenRA is a project that recreates and modernizes the classic Command & Conquer real time strategy games. We have developed a flexible open source game engine (the OpenRA engine) that provides a common platform for rebuilding and reimagining classic 2D and 2.5D RTS games (the OpenRA mods).

Read Me

OpenRA

The classic command & conquer Server

from the developers

OpenRA is a project that recreates and modernizes the classic Command & Conquer real time strategy games. We have developed a flexible open source game engine (the OpenRA engine) that provides a common platform for rebuilding and reimagining classic 2D and 2.5D RTS games (the OpenRA mods).

This means that OpenRA is not restricted by the technical limitations of the original closed-source games: it includes native support for modern operating systems and screen resolutions (including Windows 10, macOS, and most Linux distros) without relying on emulation or binary hacks, and features integrated online multiplayer.

Make sure to checkout their Home Page.

Server Ports

OpenRA requires a single port

Portdefault
Game5500

Mods/Plugins may require ports to be added to the server

Yolks
NameTag
ghcr.io/ptero-eggs/yolks:mono_latestghcr.io/ptero-eggs/yolks:mono_latest
Variables and Startup

Startup Command

./squashfs-root/AppRun --server Server.Name="{{SERVER_NAME}}" Server.ListenPort={{SERVER_PORT}} Server.AdvertiseOnline={{PUBLIC}} Server.EnableSingleplayer={{SINGLEPLAYER}} Server.Password="{{PASSWORD}}" Server.EnableGeoIP={{GEOIP}} Server.ShareAnonymizedIPs={{ANONYMOUS}}

Variables

Server Name

The Name of the Server

Environment Variable: SERVER_NAME
Default Value: OpenRAServer
User Viewable:
User Editable:
Public Server

Shall this server be public

Environment Variable: PUBLIC
Default Value: false
User Viewable:
User Editable:
Enable Singleplayer

Enable Singleplayer ?

Environment Variable: SINGLEPLAYER
Default Value: false
User Viewable:
User Editable:
Require Authentification

Enable Authentification

Environment Variable: AUTH
Default Value: false
User Viewable:
User Editable:
PASSWORD

Server Password

Environment Variable: PASSWORD
Default Value:
User Viewable:
User Editable:
GEOIP

Enable GEOIP

Environment Variable: GEOIP
Default Value: false
User Viewable:
User Editable:
Anonymized IPs

Hide IPs

Environment Variable: ANONYMOUS
Default Value: true
User Viewable:
User Editable:
VERSION

VERSION

Environment Variable: VERSION
Default Value: latest
User Viewable:
User Editable:
Install Script
#!/bin/bash
#
# Server Files: /mnt/server

## install packages to get version and download links
apt update
apt install -y curl wget file jq

MATCH=OpenRA-Red-Alert-x86_64.AppImage

cd /mnt/server/ || { echo "Failed to change into server directory"; exit 1; }



# If latest version requested, determine version
if [ -z "${VERSION}" ] || [ "${VERSION}" == "latest" ]; then
    # Fetch latest version from OpenRA API
    echo "Finding latest version of OpenRA"
    VERSION=$(curl -s https://www.openra.net/versions.json | jq -r .release)
fi

echo "Installing version ${VERSION} of ${MATCH}"

# Configure GitHub authentication
if [ -n "${GITHUB_USER}" ] && [ -n "${GITHUB_OAUTH_TOKEN}" ]; then
    echo "Using GitHub authentication"
    # shellcheck disable=SC2139
    alias curl="curl -u ${GITHUB_USER}:${GITHUB_OAUTH_TOKEN}"
else
    echo "Using anonymous API calls"
fi


# Fetch release information from GitHub
RELEASE_JSON=$(curl --silent "https://api.github.com/repos/OpenRA/OpenRA/releases/tags/${VERSION}") || { echo "Failed to get release info for ${VERSION}"; exit 1; }

# Find download link for requested artifact
DOWNLOAD_LINK=$(echo "${RELEASE_JSON}" | jq -r --arg MATCH $MATCH '.assets[] | select(.name == $MATCH).browser_download_url')
if [ -z "${DOWNLOAD_LINK}" ] || [ "${DOWNLOAD_LINK}" == "null" ] ; then
    echo "Failed to find download url for "
    exit 1
fi

wget "${DOWNLOAD_LINK}" || { echo "Failed to download ${DOWNLOAD_LINK}"; exit 1; }

chmod +x $MATCH
./$MATCH --appimage-extract
rm -f $MATCH
rm -f ./*.zsync
cd squashfs-root && chmod +x AppRun

## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"
Installation Imageghcr.io/ptero-eggs/installers:debianInstallation Entrypointbash