storj/cmd/multinode
Clement Sam d800b51dd9 cmd/multinode: generate identity when not provided
Closes https://github.com/storj/storj/issues/4974

Change-Id: I7a07d846be7ac8f8f7d7e9ad61511ff84d2ab400
2022-10-12 12:01:14 +00:00
..
Dockerfile Dockerfiles: switch base image from alpine to Debian 2022-04-05 11:40:44 +00:00
entrypoint Dockerfiles: switch base image from alpine to Debian 2022-04-05 11:40:44 +00:00
main_test.go cmd/multinode: handle JSON input with BOM to add command 2022-08-25 03:05:49 +00:00
main.go cmd/multinode: generate identity when not provided 2022-10-12 12:01:14 +00:00
README.md cmd/multinode: Add further documentation (#4556) 2022-02-22 14:42:54 +01:00

Multinode Dashboard

Reference Articles

Tech Preview Forum Post

Generate identity files

In order to run this Docker image, you need to create an identity for the Multinode Dashboard. For this you need the binaries of the Identity Tool, which you can find in the latest version here:

https://github.com/storj/storj/releases/latest

In this example under Windows, we use the file identity_windows_amd64.zip, download it and unzip it. Then we open a PowerShell window in the folder where the identity.exe was unzipped and run the following command:

./identity.exe create multinode --difficulty 10

If we run this command on Windows, the identity files will be created in the folder %appdata%\Storj\Identity\multinode.

Running the Multinode Dashboard in Docker

Then start the image like this, while replacing the directories marked by the < > with your parameters below:

docker run -d --restart unless-stopped \
    --user $(id -u):$(id -g) \
    -p 127.0.0.1:15002:15002/tcp \
    --mount type=bind,source="<multinode-identity-dir>",destination=/app/identity \
    --mount type=bind,source="<multinode-config-dir>",destination=/app/config \
    --name multinode storjlabs/multinode:latest