dawarich/dev-docker-sidekiq-entrypoint.sh

15 lines
226 B
Bash
Raw Normal View History

2024-04-04 17:12:32 -04:00
#!/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 ${@}