-
I have tired everything I had seen in a previous thread and everything I could find on the internet, but I am having no luck getting this server to start with different ports. I am trying to tunnel using playit.gg which means I have to sequential ports in order for that tunnel to work. So I have tired changing my port in the docker file and in the FactoryServer.sh file but when the server starts the logs/terminal always say starting on port "7777" even if i change them in the docker file and/or the FactoryServer file. It also seems like everytime i start the server from docker the FactoryServer.sh file gets over written. I am at a total lost and would love some help please! Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey! It's not working because you're effectively only changing what ports the container is exposing. The game server itself is still binding to the original ports (hence in the logs you see the
|
Beta Was this translation helpful? Give feedback.
Hey! It's not working because you're effectively only changing what ports the container is exposing. The game server itself is still binding to the original ports (hence in the logs you see the
Setting server port to 7777
). You need to set these two environment variables (per the README):SERVERGAMEPORT
: This is7777
by default.SERVERMESSAGINGPORT
: This is8888
by default.