How to change NODE port?

Is there any way to change the port number for the node? Use something else instead of 28967?
I’ve tried to set in the router other port, and changed it the docker start command (three places):
But it did not worked out. The node was offline all the time.

docker run -d --restart unless-stopped -p 28967:28967
-e ADDRESS=“xx.xx.xx.xx:28967” \

-p yourport:28967
-e address=“ip:yourport”

Don’t forget to forward yourport in your router

1 Like

yes in previous example you see original ports, i only pointed as a place where i made a change.
So i’ve changed to this, i’ve opened new port in the router (apply button already pressed).
But nothing works. while changin to orginal port works fine.

docker run -d --restart unless-stopped -p 10057:10057
-e ADDRESS=“xxxxxx.xxxx.xx:10057" \

You must not change the port for the container in your command, so it should be -p 10057:28967

1 Like

Solved !
Thank you…