0408997e6c
* The Multinode Dashboard no longer requires the identity files. * Removed deprecated code that used the identity-dir.
12 lines
262 B
Bash
Executable File
12 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
if [[ ! -f "/app/config/config.yaml" ]]; then
|
|
./multinode setup --config-dir config
|
|
fi
|
|
|
|
RUN_PARAMS="${RUN_PARAMS:-} --config-dir config"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --console.address=:15002"
|
|
|
|
exec ./multinode run $RUN_PARAMS "$@"
|