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).
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.
OpenRA requires a single port
Port | default |
---|---|
Game | 5500 |
Name | Tag |
---|---|
ghcr.io/ptero-eggs/yolks:mono_latest | ghcr.io/ptero-eggs/yolks:mono_latest |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Server Name | The Name of the Server | SERVER_NAME | OpenRAServer | Yes | Yes |
Public Server | Shall this server be public | PUBLIC | false | Yes | Yes |
Enable Singleplayer | Enable Singleplayer ? | SINGLEPLAYER | false | Yes | Yes |
Require Authentification | Enable Authentification | AUTH | false | Yes | Yes |
PASSWORD | Server Password | PASSWORD | Yes | Yes | |
GEOIP | Enable GEOIP | GEOIP | false | Yes | Yes |
Anonymized IPs | Hide IPs | ANONYMOUS | true | Yes | Yes |
VERSION | VERSION | VERSION | latest | No | No |
#!/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 "-----------------------------------------"