From e00052f62b046c16a5e07ec9d383aee94607d0bc Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt <2270806+jammsen@users.noreply.github.com> Date: Sun, 28 Jan 2024 10:27:26 +0100 Subject: [PATCH 1/2] More verboose logging for Start-Commands --- servermanager.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/servermanager.sh b/servermanager.sh index 2f20239..c563e0e 100755 --- a/servermanager.sh +++ b/servermanager.sh @@ -319,9 +319,11 @@ function startServer() { START_OPTIONS="" if [[ -n $COMMUNITY_SERVER ]] && [[ $COMMUNITY_SERVER == "true" ]]; then + echo "Setting Community-Mode to enabled" START_OPTIONS="$START_OPTIONS EpicApp=PalServer" fi if [[ -n $MULTITHREAD_ENABLED ]] && [[ $MULTITHREAD_ENABLED == "true" ]]; then + echo "Setting Multi-Core-Enchancements to enabled" START_OPTIONS="$START_OPTIONS -useperfthreads -NoAsyncLoadingThread -UseMultithreadForDS" fi ./PalServer.sh "$START_OPTIONS" From 9bb534e7d2afab703508b54d365fdb1cfa35e9f7 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt <2270806+jammsen@users.noreply.github.com> Date: Sun, 28 Jan 2024 11:25:12 +0100 Subject: [PATCH 2/2] General cleanup: remove network-type bridge, its the default set, therefore redundant --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 2ed50a3..1f1fda3 100644 --- a/README.md +++ b/README.md @@ -164,7 +164,6 @@ services: container_name: palworld-dedicated-server image: jammsen/palworld-dedicated-server:latest restart: always - network_mode: bridge ports: - target: 8211 # Gamerserver port inside of the container published: 8211 # Gamerserver port on your host @@ -258,7 +257,6 @@ services: container_name: palworld-dedicated-server image: jammsen/palworld-dedicated-server:latest restart: always - network_mode: bridge ports: - target: 8211 # Gamerserver port inside of the container published: 8211 # Gamerserver port on your host