generated from JustScreaMy/ProjectTemplate
11 lines
No EOL
162 B
Bash
Executable file
11 lines
No EOL
162 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
wait-for-it \
|
|
--quiet \
|
|
--service ${DATABASE_HOST}:${DATABASE_PORT:-5432} \
|
|
--timeout 60 \
|
|
-- echo "db is up"
|
|
|
|
exec "$@"; |