Skip to content

Commit

Permalink
adding a short readme
Browse files Browse the repository at this point in the history
Change-Id: I6fda2dd358895ae256a13dba6d033aa054795443
  • Loading branch information
stefanbenten authored and ihaid committed Feb 21, 2022
1 parent f89e030 commit afa09b3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions cmd/multinode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Multinode Dashboard

## Reference Articles

[Tech Preview Forum Post](https://forum.storj.io/t/tech-preview-multinode-dashboard-binaries/14572)

## Running in Docker

In order to run this docker image, you need to generate an identity like this:
```
identity create multinode --difficulty 10
```

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="<identity-dir>",destination=/app/identity \
--mount type=bind,source="<storage-dir>",destination=/app/config \
--name multinode storjlabs/multinode:latest
```

0 comments on commit afa09b3

Please sign in to comment.