mirror of
https://github.com/dyrkin/luxmed-bot.git
synced 2025-12-24 14:31:55 +01:00
13 lines
577 B
Bash
13 lines
577 B
Bash
#!/bin/sh
|
|
|
|
echo "********************************************************"
|
|
echo "Waiting for the database server to start on host ${DB_HOST:-localhost} and port ${DB_PORT:-5432}"
|
|
echo "********************************************************"
|
|
while ! `nc -z ${DB_HOST:-localhost} ${DB_PORT:-5432}`; do sleep 3; done
|
|
echo "******** Database Server has been started "
|
|
|
|
echo "********************************************************"
|
|
echo "Starting Luxmed Booking Service "
|
|
echo "********************************************************"
|
|
|
|
cd /app && java -Xmx128m -jar server.jar |