2022-02-20 22:57:23 +00:00
# Multinode Dashboard
## Reference Articles
[Tech Preview Forum Post ](https://forum.storj.io/t/tech-preview-multinode-dashboard-binaries/14572 )
2023-03-08 12:56:15 +00:00
## Running the Multinode Dashboard in Docker with persistent data
2022-02-20 22:57:23 +00:00
2023-03-08 12:56:15 +00:00
Start the image as follows, while replacing the placeholder `<multinode-config-dir>` with a path to a directory. This directory will contain database files and a config.yaml.
2022-02-20 22:57:23 +00:00
```
docker run -d --restart unless-stopped \
--user $(id -u):$(id -g) \
-p 127.0.0.1:15002:15002/tcp \
2022-02-22 13:42:54 +00:00
--mount type=bind,source="< multinode-config-dir > ",destination=/app/config \
2022-02-20 22:57:23 +00:00
--name multinode storjlabs/multinode:latest
2023-03-08 12:56:15 +00:00
```