From 3093a537a5cd8032eac84100dc8568d0b97f564a Mon Sep 17 00:00:00 2001 From: Robert Thomas <31854736+wolveix@users.noreply.github.com> Date: Tue, 10 Sep 2024 16:26:10 +0100 Subject: [PATCH 1/5] Update run.sh --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 4b59c2f..b19a3f5 100755 --- a/run.sh +++ b/run.sh @@ -185,4 +185,4 @@ fi cd /config/gamefiles || exit 1 -exec ./FactoryServer.sh -Port="$SERVERGAMEPORT" $SERVERIP "$@" +exec ./FactoryServer.sh "$@" From 0920005263b854bc90323864c0d74fc9d984da8a Mon Sep 17 00:00:00 2001 From: Robert Thomas <31854736+wolveix@users.noreply.github.com> Date: Tue, 10 Sep 2024 16:39:39 +0100 Subject: [PATCH 2/5] Update run.sh --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index b19a3f5..885bd94 100755 --- a/run.sh +++ b/run.sh @@ -185,4 +185,4 @@ fi cd /config/gamefiles || exit 1 -exec ./FactoryServer.sh "$@" +exec ./FactoryServer.sh -port="$SERVERGAMEPORT" $SERVERIP "$@" From 41baa107b19152f28737b2f966270454549a9a9c Mon Sep 17 00:00:00 2001 From: Zblocker64 <105066639+Zblocker64@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:14:04 -0500 Subject: [PATCH 3/5] Update statefulset.yaml (#264) --- cluster/statefulset.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/statefulset.yaml b/cluster/statefulset.yaml index 196fb41..0e4dc27 100644 --- a/cluster/statefulset.yaml +++ b/cluster/statefulset.yaml @@ -32,7 +32,7 @@ spec: value: "false" ports: - containerPort: 7777 - name: "gameTCP" + name: "gametcp" protocol: TCP - containerPort: 7777 name: "game" From f8189b358b66aaca9286be881fc11689ba8abef4 Mon Sep 17 00:00:00 2001 From: Robert Thomas <31854736+wolveix@users.noreply.github.com> Date: Tue, 10 Sep 2024 17:15:03 +0100 Subject: [PATCH 4/5] Update run.sh --- run.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/run.sh b/run.sh index 885bd94..5f56e0c 100755 --- a/run.sh +++ b/run.sh @@ -119,10 +119,6 @@ else cp /home/steam/ServerSettings.ini "${GAMECONFIGDIR}/Config/LinuxServer/" fi -if [ -n "$SERVERIP" ]; then - SERVERIP="-multihome=\"$SERVERIP\"" -fi - if [[ "${SKIPUPDATE,,}" != "false" ]] && [ ! -f "/config/gamefiles/FactoryServer.sh" ]; then printf "%s Skip update is set, but no game files exist. Updating anyway\\n" "${MSGWARNING}" SKIPUPDATE="false" @@ -185,4 +181,4 @@ fi cd /config/gamefiles || exit 1 -exec ./FactoryServer.sh -port="$SERVERGAMEPORT" $SERVERIP "$@" +exec ./FactoryServer.sh -Port="$SERVERGAMEPORT" $SERVERIP "$@" From 0e43933a255c019bfb3637752e64a7efe6b179fd Mon Sep 17 00:00:00 2001 From: Superbjorn Date: Tue, 10 Sep 2024 18:23:09 +0200 Subject: [PATCH 5/5] use string instead of bool value in docker-copose environment services.satisfactory-server.environment.ROOTLESS contains false, which is an invalid type, it should be a string, number, or a null --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d97da67..3c49df4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,8 +12,8 @@ services: - MAXPLAYERS=4 - PGID=1000 - PUID=1000 - - ROOTLESS=false - - STEAMBETA=false + - ROOTLESS='false' + - STEAMBETA='false' restart: unless-stopped deploy: resources: