identity-service/bin/entrypoint.sh

26 lines
444 B
Bash
Raw Normal View History

2022-12-07 02:42:58 +01:00
#!/usr/bin/env sh
set +e
waitForService()
{
./wait-for-it.sh $1 -t 2 1>/dev/null 2>&1
status=$?
while [ $status != 0 ]
do
echo "[x] wating for $1..."
sleep 1
./wait-for-it.sh $1 -t 2 1>/dev/null 2>&1
status=$?
done
}
waitForService "postgres-db:5432"
waitForService "api-logger:24224"
waitForService "api-registry:8500"
# waitForService "api-eventbus:5672"
2022-12-16 01:01:54 +01:00
# set -euo pipefail
2022-12-07 02:42:58 +01:00
exec "$@"