Fixes and updates
parent
7a1a0f49fc
commit
fe474b0305
|
@ -21,9 +21,6 @@ ADD install.txt /install.txt
|
||||||
# Copy the startup script
|
# Copy the startup script
|
||||||
ADD start_starbound.sh /start.sh
|
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
|
# Set the current working directory
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# Starbound server that runs inside a Docker container
|
# 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.
|
**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
|
# How to run the server
|
||||||
|
|
|
@ -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
|
|
||||||
}
|
|
|
@ -69,15 +69,6 @@ fi
|
||||||
# Set the working directory
|
# Set the working directory
|
||||||
cd /steamcmd/starbound/linux || exit
|
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
|
# Run the server
|
||||||
echo ""
|
echo ""
|
||||||
echo "Starting Starbound.."
|
echo "Starting Starbound.."
|
||||||
|
|
Loading…
Reference in New Issue