Files
MyFit-CoreBackEnd/services/web/entrypoint.prod.sh
T
CHIEFSOFT\ameye 108378a31e first commit
2025-05-03 22:16:10 -04:00

15 lines
196 B
Bash

#!/bin/sh
if [ "$DATABASE" = "postgres" ]
then
echo "Waiting for postgres..."
while ! nc -z $SQL_HOST $SQL_PORT; do
sleep 0.1
done
echo "PostgreSQL started"
fi
exec "$@"