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.
Minimum required memory to run the server. 2GB is recommended. 3GB+ is preferred
Minimum required storage to run the server. Example: 100MiB is recommended. 2GiB+ is preferred
Ports required to run the server in a table format.
Port | default |
---|---|
Game | 1212 (TCP+ UDP) |
1212 is the default port, but any port can be used.
Name | Tag |
---|---|
Dotnet 8 | ghcr.io/ptero-eggs/yolks:dotnet_8 |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Server name | The server hostname | SERVER_NAME | MyServer | Yes | Yes |
Server tickrate | The tickrate of the server. Default is 60 | SERVER_TICK | 60 | Yes | Yes |
Max players | SERVER_MAX_PLAYERS | 256 | Yes | No |
#!/bin/bash
V=$(curl -sSL https://central.spacestation14.io/builds/wizards/builds.html | grep "The version is" | sed -n 's/.*<span class="versionNumber">\([^<]*\)<\/span>.*/\1/p')
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 https://cdn.centcomm.spacestation14.com/builds/wizards/builds/${V}/SS14.Server_${ARCH}.zip"
curl -sSL -o server_linux.zip "https://cdn.centcomm.spacestation14.com/builds/wizards/builds/${V}/SS14.Server_${ARCH}.zip"
unzip -o server_linux.zip
rm server_linux.zip
chmod +x Robust.Server
## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"