Files
dawarich/dev-docker-sidekiq-entrypoint.sh
2024-04-04 23:12:32 +02:00

15 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 ${@}