[Tech Preview] Storage Node Multinode Dashboard

Done!

Initial setup

docker run --rm -it -v storj_dashboard:/root/.local/share/storj -e SETUP=true derkades/storj-dashboard

Running normally:

docker run -p 15002:15002 -v storj_dashboard:/root/.local/share/storj -d --restart=always derkades/storj-dashboard

or if you are cool and use docker-compose

version: '3.2'

services:
  dashboard:
    image: derkades/storj-dashboard
    ports: ['15002:15002']
    volumes:
      - type: volume
        source: storj_dashboard
        target: /root/.local/share/storj
    restart: always

Getting an API key from a node:

docker exec -it storagenode /app/storagenode issue-apikey --config-dir /app/config --identity-dir /app/identity
docker-compose exec storagenode /app/storagenode issue-apikey --config-dir /app/config --identity-dir /app/identity

As noted in the OP, the dashboard is in very early stages. Start with very low expectations.

6 Likes