mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
14 lines
226 B
Bash
14 lines
226 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Environment: $RAILS_ENV"
|
|
|
|
# Wait for the database to be ready
|
|
until nc -zv $DATABASE_HOST 5432; do
|
|
echo "Waiting for PostgreSQL to be ready..."
|
|
sleep 1
|
|
done
|
|
|
|
# run passed commands
|
|
bundle exec ${@}
|