storj/cmd/satellite/entrypoint
Matt Robinson 75c64035a2 Normalize the Docker Bits (#325)
* 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
2018-09-07 15:46:08 -04:00

29 lines
683 B
Bash
Executable File

#!/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
RUN_PARAMS="${RUN_PARAMS} --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 "$@"