1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

Correct SQS URL for single image builds.

This commit is contained in:
Sam Rose 2024-05-29 15:29:40 +01:00
parent d33928eaab
commit 1f07b7ad0a
No known key found for this signature in database

View file

@ -53,6 +53,11 @@ done
if [[ -z "${COUCH_DB_URL}" ]]; then
export COUCH_DB_URL=http://$COUCHDB_USER:$COUCHDB_PASSWORD@127.0.0.1:5984
fi
if [[ -z "${COUCH_DB_SQL_URL}" ]]; then
export COUCH_DB_SQL_URL=http://127.0.0.1:4984
fi
if [ ! -f "${DATA_DIR}/.env" ]; then
touch ${DATA_DIR}/.env
for ENV_VAR in "${ENV_VARS[@]}"