2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-08 14:21:05 +00:00

Merge pull request #362 from revant/fix-healthcheck-allow-redis-databases

fix: health check
This commit is contained in:
Chinmay Pai 2020-10-06 18:55:01 +05:30 committed by GitHub
commit ec3ad0680a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,19 @@ fi
# Set REDIS host:port
export REDIS_CACHE=`cat $COMMON_SITE_CONFIG_JSON | awk '/redis_cache/ { gsub(/[",]/,"",$2); print $2}' | tr -d '\n' | sed 's|redis://||g'`
if [[ "$REDIS_CACHE" == *"/"* ]]; then
export REDIS_CACHE=`echo $REDIS_CACHE | cut -f1 -d"/"`
fi
export REDIS_QUEUE=`cat $COMMON_SITE_CONFIG_JSON | awk '/redis_queue/ { gsub(/[",]/,"",$2); print $2}' | tr -d '\n' | sed 's|redis://||g'`
if [[ "$REDIS_QUEUE" == *"/"* ]]; then
export REDIS_QUEUE=`echo $REDIS_QUEUE | cut -f1 -d"/"`
fi
export REDIS_SOCKETIO=`cat $COMMON_SITE_CONFIG_JSON | awk '/redis_socketio/ { gsub(/[",]/,"",$2); print $2}' | tr -d '\n' | sed 's|redis://||g'`
if [[ "$REDIS_SOCKETIO" == *"/"* ]]; then
export REDIS_SOCKETIO=`echo $REDIS_SOCKETIO | cut -f1 -d"/"`
fi
echo "Check $DB_HOST:$DB_PORT"
wait-for-it $DB_HOST:$DB_PORT -t 1