15 lines
287 B
Bash
15 lines
287 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Waiting for Postgres to be ready..."
|
|
until nc -z postgres 5432 2>/dev/null; do
|
|
echo " Postgres not ready yet, retrying in 2s..."
|
|
sleep 2
|
|
done
|
|
echo "Postgres is ready."
|
|
|
|
echo "Running Prisma migrations..."
|
|
./node_modules/.bin/prisma migrate deploy
|
|
|
|
exec "$@"
|