5224e92646
* If the directory is somehow persistent, but the config file itself isn't created yet, create it * Other improvements to thd storagenode Docker image * Other improvements to thd satellite Docker image * Other improvements to thd gateway Docker image * Other improvements to thd uplink Docker image
19 lines
395 B
Bash
Executable File
19 lines
395 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
if [[ ! -f "${CONF_PATH}/config.yaml" ]]; then
|
|
./satellite setup
|
|
fi
|
|
|
|
RUN_PARAMS="${RUN_PARAMS:-} --config-dir ${CONF_PATH}"
|
|
|
|
if [[ -n "${API_KEY}" ]]; then
|
|
export STORJ_POINTER_DB_AUTH_API_KEY="${API_KEY}"
|
|
fi
|
|
|
|
if [[ -n "${BOOTSTRAP_ADDR:-}" ]]; then
|
|
RUN_PARAMS="${RUN_PARAMS} --kademlia.bootstrap-addr ${BOOTSTRAP_ADDR}"
|
|
fi
|
|
|
|
exec ./satellite run $RUN_PARAMS "$@"
|