Dedicated Server Docker Linux Tick Rate

Hello all, I am having an issue changing the tick rate of my dedicated server.

Originaly I was using the DefaultEngine.ini with:

[/Script/OnlineSubsystemUtils.IpNetDriver]
MaxNetTickRate=20
NetServerMaxTickRate=20

It work fine. Since I transfered this server to a docker container and running it in my Unraid Server. Im trying to pass an envrionment variable to change it as i wish. I have been able to pass variables like MAP, MAX_PLAYER, GAME_PORT and other custom variables with an entrypoint.sh

./WatefuGameServer.sh
“/Game/Maps/${MAP}${MAP_OPTIONS}”
-port=${GAME_PORT}
-MaxPlayers=${MAX_PLAYERS}
-NetServerMaxTickRate=${SERVER_TICKRATE}
-UseAllAvailableCores
-NoTextureStreaming
-unattended
-stdout
-FORCELOGFLUSH
-log

Basicaly the “-NetServerMaxTickRate=${SERVER_TICKRATE} “ doesnt seem to work at all even if i hardcode a number there

Anyone would have a clue ? I’m turning in circle with the AI giving me false solution :wink:

Thanks

Replacing

-NetServerMaxTickRate=${SERVER_TICKRATE}

by

-ini:Engine:[/Script/OnlineSubsystemUtils.IpNetDriver]:NetServerMaxTickRate=${SERVER_TICKRATE} \

did the trick