diff --git a/Dockerfile b/Dockerfile index 744d50e..dfa239d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 / diff --git a/README.md b/README.md index faf5269..d70c882 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/starbound_server.default.config b/starbound_server.default.config deleted file mode 100644 index 5cc9ac3..0000000 --- a/starbound_server.default.config +++ /dev/null @@ -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 -} \ No newline at end of file diff --git a/start_starbound.sh b/start_starbound.sh index 44c0a54..0631782 100755 --- a/start_starbound.sh +++ b/start_starbound.sh @@ -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.."