catalog-service/bin/entrypoint.sh
Piotr Biernat ab362d3b56
All checks were successful
continuous-integration/drone/push Build is passing
Added migrations
2022-12-17 06:36:55 +01:00

28 lines
466 B
Bash
Executable File

#!/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-eventbus:5672"
waitForService "api-logger:24224"
waitForService "api-registry:8500"
# run migrations
migrate.sh
# set -euo pipefail
exec "$@"