1f452e67dc
* Adding dockerfile for running the web UI for Satellite * Updating to work with Makefile and from root directory of repo * Updating satellite ui build process to run in a more production like mode by generating the assets the pulling those into the satellite container * Updates to allow external traffic to UI, updates to storagenode for identity creation, and logging for bug tracking * Adding auto cert generation for storagenode * removing satellite-ui-image from main images flow in Makefile and adding latest tag to docker build for it * Adding solid defaults, tuning dockerfiles, and moving to standard logging methods * Updating logging to be more standard * Updating to logger.Debug * Removing unused library and unused identity creation code Change-Id: I956453037e303693ea37f94318180af0ab7984d5
37 lines
864 B
Bash
Executable File
37 lines
864 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
SETUP_PARAMS=""
|
|
|
|
if [[ -n "${API_KEY:-}" ]]; then
|
|
export STORJ_POINTER_DB_AUTH_API_KEY="${API_KEY}"
|
|
export STORJ_AUDIT_API_KEY="${API_KEY}"
|
|
export STORJ_POINTER_DB_AUTH_API_KEY="${API_KEY}"
|
|
export STORJ_REPAIRER_API_KEY="${API_KEY}"
|
|
fi
|
|
|
|
if [[ -n "${STORJ_DATABASE:-}" ]]; then
|
|
export STORJ_POINTER_DB_DATABASE_URL="${STORJ_DATABASE}"
|
|
fi
|
|
|
|
|
|
if [[ -n "${IDENTITY_ADDR:-}" ]]; then
|
|
export STORJ_SERVER_ADDRESS="${IDENTITY_ADDR}"
|
|
fi
|
|
|
|
if [[ -n "${BOOTSTRAP_ADDR:-}" ]]; then
|
|
export STORJ_KADEMLIA_BOOTSTRAP_ADDR="${BOOTSTRAP_ADDR}"
|
|
fi
|
|
|
|
if [[ ! -f "${CONF_PATH}/config.yaml" ]]; then
|
|
./satellite setup $SETUP_PARAMS
|
|
fi
|
|
|
|
RUN_PARAMS="${RUN_PARAMS:-} --config-dir ${CONF_PATH}"
|
|
|
|
if [[ -n "${BOOTSTRAP_ADDR:-}" ]]; then
|
|
RUN_PARAMS="${RUN_PARAMS} --kademlia.bootstrap-addr ${BOOTSTRAP_ADDR}"
|
|
fi
|
|
|
|
exec ./satellite run $RUN_PARAMS "$@"
|