Simple to set up stationeers server.
docker run --detach --name stationeers --publish 27016:27016/udp hetsh/stationeersdocker stop stationeersTo keep worlds, configuration and logs, you need to create a writeable directory:
MP="/path/to/storage"
mkdir -p "$MP"
chown -R 1358:1358 "$MP"1358 is the numerical id of the user running the server (see Dockerfile).
Start the server with the additional mount flag:
docker run --mount type=bind,source=/path/to/storage,target=/stationeers ...The server was rewritten completely. It is currently best to stick to the official server-guide for now. Add launch parameters by appending them to the end:
docker run ... hetsh/stationeers <lanch> <parameters> <here>This image contains a specific version of the game and will not update on startup, this decreases starting time and disk space usage. Version number is the manifest id that can also be found on SteamDB. This id and therefore the image on docker hub is updated hourly.
This is an open project (visit GitHub). Please feel free to ask questions, file an issue or contribute to it.