Fixes and updates

master
Pauli Jokela 2020-01-10 11:31:39 +02:00
parent 7a1a0f49fc
commit fe474b0305
4 changed files with 0 additions and 64 deletions

View File

@ -21,9 +21,6 @@ ADD install.txt /install.txt
# Copy the startup script
ADD start_starbound.sh /start.sh
# Copy the default configuration file
ADD starbound_server.default.config /starbound_server.default.config
# Set the current working directory
WORKDIR /

View File

@ -1,7 +1,5 @@
# Starbound server that runs inside a Docker container
*Show your support for this project by signing up for a [free Bitrise account!](https://app.bitrise.io?referrer=02c20c56fa07adcb)*
**NOTE**: This image will install/update on startup. The path ```/steamcmd/starbound``` can be mounted on the host for data persistence.
# How to run the server

View File

@ -1,50 +0,0 @@
{
"allowAdminCommands" : true,
"allowAdminCommandsFromAnyone" : false,
"allowAnonymousConnections" : true,
"allowAssetsMismatch" : true,
"anonymousConnectionsAreAdmin" : false,
"bannedIPs" : [],
"bannedUuids" : [],
"checkAssetsDigest" : false,
"clearPlayerFiles" : false,
"clearUniverseFiles" : false,
"clientIPJoinable" : false,
"clientP2PJoinable" : true,
"configurationVersion" : {
"basic" : 2,
"server" : 4
},
"crafting" : {
"filterHaveMaterials" : false
},
"gameServerBind" : "0.0.0.0",
"gameServerPort" : 21025,
"interactiveHighlight" : true,
"inventory" : {
"pickupToActionBar" : true
},
"maxPlayers" : 8,
"maxTeamSize" : 4,
"monochromeLighting" : false,
"playerBackupFileCount" : 3,
"queryServerBind" : "::",
"queryServerPort" : 21025,
"rconServerBind" : "::",
"rconServerPassword" : "",
"rconServerPort" : 21026,
"rconServerTimeout" : 1000,
"runQueryServer" : false,
"runRconServer" : false,
"safeScripts" : true,
"scriptInstructionLimit" : 10000000,
"scriptInstructionMeasureInterval" : 10000,
"scriptProfilingEnabled" : false,
"scriptRecursionLimit" : 100,
"serverFidelity" : "automatic",
"serverName" : "A Starbound Server",
"serverOverrideAssetsDigest" : null,
"serverUsers" : {
},
"tutorialMessages" : true
}

View File

@ -69,15 +69,6 @@ fi
# Set the working directory
cd /steamcmd/starbound/linux || exit
# Copy default configuration if necessary
if [ ! -f "/steamcmd/starbound/storage/starbound_server.config" ]; then
echo ""
echo "Copying default configuration.."
echo ""
mkdir -p /steamcmd/starbound/storage
cp -f /starbound_server.default.config /steamcmd/starbound/storage/starbound_server.config
fi
# Run the server
echo ""
echo "Starting Starbound.."