Enable Web Dashboard

Hi Xade,

In order to add the port to your run command you need to do the following.

Stop the running container:
docker stop -t 300 storagenode

Remove the container (this won’t harm your data):
docker rm storagenode

Start the container with the new run command which includes the added line for port 14002:
-p 127.0.0.1:14002:14002 \
if you want to only view the dashboard from the machine the node is running on. If you want to view the dashboard from any machine within your local network use:
-p 14002:14002 \

Make sure you don’t expose port 14002 to the public internet on your firewall or you could be exposing potential security concerns.

2 Likes