You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
374 B
Bash
17 lines
374 B
Bash
#!/bin/bash
|
|
|
|
# Wait for MySQL to be ready
|
|
echo "Waiting for MySQL to be ready..."
|
|
while ! mysqladmin ping -h"lemon_mysql" --silent; do
|
|
sleep 1
|
|
done
|
|
|
|
# Initialize MySQL database
|
|
echo "Initializing MySQL database..."
|
|
mysql -h lemon_mysql -u root -pSghjdA887# aiplatform < /app/lemon/mysql_app.sql
|
|
|
|
echo "MySQL initialization completed."
|
|
|
|
# Start the application
|
|
exec "$@"
|