From 0a3d9c8558b29d37dc099ecb45c49f61968d4a82 Mon Sep 17 00:00:00 2001 From: Tandashi <18377875+Tandashi@users.noreply.github.com> Date: Sun, 21 May 2023 14:41:51 +0200 Subject: [PATCH] fix: Crash when using volumes --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index fa22775..229d00c 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -23,7 +23,7 @@ echo "KnockoutCity Server Backend Redis Port: $KOC_BACKEND_REDIS_DB_PORT" echo "--------------------------------------------------------" echo "" -cd KnockoutCityServer || exit 1 +cd /data/KnockoutCityServer || exit 1 wine64 KnockoutCityServer.exe \ -backend_port="${KOC_BACKEND_PORT:-23600}" \ -server_min_port="${KOC_SERVER_MIN_PORT:-23600}" \