storj/cmd/satellite/entrypoint

29 lines
669 B
Plaintext
Raw Normal View History

#!/bin/sh
set -euo pipefail
if [[ ! -f "${CONF_PATH}" ]]; then
./satellite setup
fi
RUN_PARAMS="${RUN_PARAMS:-} --config ${CONF_PATH}"
if [[ -n "${OVERLAY_URL:-}" ]]; then
RUN_PARAMS="${RUN_PARAMS} --overlay.database-url ${OVERLAY_URL}"
fi
RUN_PARAMS="${RUN_PARAMS} --identity.address=${IDENTITY_ADDR}"
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
if [[ -n "${MOCK_OVERLAY_NODES:-}" ]]; then
RUN_PARAMS="${RUN_PARAMS} --mock-overlay.nodes ${MOCK_OVERLAY_NODES}"
fi
exec ./satellite run $RUN_PARAMS "$@"