order-service/bin/entrypoint.sh

32 lines
588 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env sh
set +e
waitForService()
{
2022-12-17 08:26:32 +01:00
wait-for-it.sh $1 -t 2 1>/dev/null 2>&1
status=$?
while [ $status != 0 ]
do
echo "[x] wating for $1..."
sleep 1
2022-12-17 08:26:32 +01:00
wait-for-it.sh $1 -t 2 1>/dev/null 2>&1
status=$?
done
}
update-resolv # provided by stack - better approach - single copy
update-ca-certificates
waitForService "api-registry:8500"
waitForService "postgres-db:5432"
waitForService "api-eventbus:5672"
waitForService "api-logger:24224"
2024-07-20 19:23:18 +02:00
waitForService "basket-svc:443"
2022-12-17 08:26:32 +01:00
# run migrations
migrate.sh
2022-12-17 08:26:32 +01:00
# set -euo pipefail
exec "$@"