75c64035a2
* Normalize the dockerfiles and entrypoints * fix formattting and docker-compose file * add missing env var to satellite dockerfile * Remove build args no longer in use * More changes to make it all work
15 lines
293 B
Bash
Executable File
15 lines
293 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
if [[ ! -f "${CONF_PATH}" ]]; then
|
|
./storagenode setup
|
|
fi
|
|
|
|
RUN_PARAMS="${RUN_PARAMS:-} --config ${CONF_PATH}"
|
|
|
|
if [ -n "${SATELLITE_ADDR:-}" ]; then
|
|
RUN_PARAMS="${RUN_PARAMS} --kademlia.bootstrap-addr $SATELLITE_ADDR"
|
|
fi
|
|
|
|
exec ./storagenode run $RUN_PARAMS "$@"
|