storj/cmd/multinode
Márton Elek 1ba314428f go.mod: make bump-dependencies (uplink, common, ...)
It requires more work at this time, as https://review.dev.storj.io/c/storj/private/+/11066 modified the way how we configure the debug port.

Change-Id: I4a7cc999e13fd3514064a515b21885bb4d39ff16
2023-11-29 16:55:41 +00:00
..
Dockerfile Dockerfiles: switch base image from alpine to Debian 2022-04-05 11:40:44 +00:00
entrypoint cmd/multinode: Removes dependency on deprecated identity-dir flag, code and documentation. (#5646) 2023-03-08 13:56:15 +01:00
main_test.go cmd/multinode: handle JSON input with BOM to add command 2022-08-25 03:05:49 +00:00
main.go go.mod: make bump-dependencies (uplink, common, ...) 2023-11-29 16:55:41 +00:00
README.md cmd/multinode: Removes dependency on deprecated identity-dir flag, code and documentation. (#5646) 2023-03-08 13:56:15 +01:00

Multinode Dashboard

Reference Articles

Tech Preview Forum Post

Running the Multinode Dashboard in Docker with persistent data

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.

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