starmade

Games
Report Issue

starmade

Contributors:
README

Starmade Server

From their Homepage - Guide

The ultimate space sandbox. Participate in epic fleet battles, form alliances, strive to dominate entire galaxies and harness the universe’s resources for your industrious empire or the destruction of others. Customise your experience, the universe is yours!

Server Ports

Ports required to run the server

Port default
Game 4242
Docker Images (1)
Name Image
ghcr.io/ptero-eggs/yolks:java_16 ghcr.io/ptero-eggs/yolks:java_16
Startup Command
java -Xms128m -Xmx{{SERVER_MEMORY}}m -jar {{SERVER_JARFILE}} -server -port:{{SERVER_PORT}}
Variables (1)

Server Jarfile

Environment:
SERVER_JARFILE
Default:
StarMade.jar
User Viewable:
User Editable:
Rules:
required|string|max:64
Installation Script
Container: eclipse-temurin:16-jdk-focal
Entrypoint: bash
#!/bin/bash
# starmade Installation Script
#
# Server Files: /mnt/server
apt update
apt -y install curl

cd /mnt/server

wget -O starter.jar http://files.star-made.org/StarMade-Starter.jar

java -jar starter.jar -nogui

mv ./StarMade/* ./
rm -r ./StarMade

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