026997e725
* First pass at an all-in-one compose project * Sort out dependencies so uplink can build in docker * Added the final bits to make this work * Add readme for all-in-one * Fix sed to work on OS X and Linux * Make the readme for all-in-one better * Only bring up the satellite and uplink after fixing the mock overlay * Use a dummy value for mock overlay for now * Finishing touches * Fix url form for aws cli tool * Move files out of all-in-one directory to help with directory confusion. * Added a make target to make all-in-one even better
21 lines
574 B
Bash
Executable File
21 lines
574 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
RUN_PARAMS="${RUN_PARAMS:-} --overlay.database-url redis://:${REDIS_PASSWORD}@${REDIS_ADDR}/?db=${REDIS_DB} --debug.addr=${HTTP_PORT} --identity.address=${IDENTITY_ADDR}"
|
|
|
|
if [[ -f "${CONF_PATH:-}" ]]; then
|
|
RUN_PARAMS="${RUN_PARAMS} --config \"${CONF_PATH}\""
|
|
else
|
|
./satellite setup
|
|
fi
|
|
|
|
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
|
|
|
|
exec ./satellite run $RUN_PARAMS "$@"
|