Docker run issue multiple ports

When I am trying to start the newley created node with docker with the following specs

docker run -d --restart unless-stopped --stop-timeout 300
-p 28967:28967
-p myhost.ddns.net:14002:14002 \ us throwing me the following error

docker: invalid publish opts format (should be name=value but got ‘28967:28967’).

I am running this on raspberry pi 4

Hello @cyber-arknet,
Welcome to the forum!

Please, put your full docker command between two new lines with three backticks: ``` here
You can remove the private information

BTW, we do not recommend to publish your dashboard with a private information like your wallet, email , NodeID and so on to the internet unprotected. So, please, modify back -p myhost.ddns.net:14002:14002 to -p 127.0.0.1:14002:14002 and use the remote access instead: https://documentation.storj.io/resources/faq/how-to-remote-access-the-web-dashboard

HI Alexey,

Looks like that by puting back to -p 127.0.0.1:14002:14002 \ it works. Thx a lot for the heads up

1 Like