Spacestation 14

games
Report Issue

Space Station 14 tells the story of an ordinary shift on a space station gone wrong. Immerse yourself into your role, tinker with detailed systems, and survive the chaos in this round-based multiplayer role playing game.

Contributors:
README

Spacestation 14

From their Site

Documentation

Minimum RAM warning

Minimum required memory to run the server. 2GB is recommended. 3GB+ is preferred

Minimum Sorage warning

Minimum required storage to run the server. Example: 100MiB is recommended. 2GiB+ is preferred

Server Ports

Ports required to run the server in a table format.

Port default
Game 1212 (TCP+ UDP)

Notes

1212 is the default port, but any port can be used.

Docker Images (1)
Name Image
Dotnet 9 ghcr.io/ptero-eggs/yolks:dotnet_9
Startup Command
./Robust.Server
Variables (3)

Server name

The server hostname

Environment:
SERVER_NAME
Default:
MyServer
User Viewable:
User Editable:
Rules:
required|string|max:48

Server tickrate

The tickrate of the server. Default is 60

Environment:
SERVER_TICK
Default:
60
User Viewable:
User Editable:
Rules:
required|numeric|between:1,80

Max players

Environment:
SERVER_MAX_PLAYERS
Default:
256
User Viewable:
User Editable:
Rules:
required|numeric|between:1,256
Installation Script
Container: ghcr.io/ptero-eggs/installers:debian
Entrypoint: bash
#!/bin/bash

URL="https://wizards.cdn.spacestation14.com/fork/wizards"

V=$(curl -s "$URL" | grep -m1 -oP '<span[^>]*class="[^"]*\bversionNumber\b[^"]*"[^>]*>\K[^<]+')

ARCH=$([[ "$(uname -m)" == "x86_64" ]] && echo "linux-x64" || echo "linux-arm64")

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

echo "Running: curl -sSL -o server_linux.zip ${URL}/version/${V}/file/SS14.Server_${ARCH}.zip"
curl -sSL -o server_linux.zip "${URL}/version/${V}/file/SS14.Server_${ARCH}.zip"
unzip -o server_linux.zip
rm server_linux.zip

chmod +x Robust.Server

## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"