catalog-service/bin/entrypoint.sh

30 lines
555 B
Bash
Raw Normal View History

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