13 lines
206 B
Bash
13 lines
206 B
Bash
#!/bin/sh
|
|
|
|
|
|
#migrate DB
|
|
cd /var/www/html/api-wiaas
|
|
while ! mysqladmin ping -h"db" --silent; do
|
|
sleep 1
|
|
done
|
|
echo "Ready...."
|
|
vendor/bin/phinx migrate -e development
|
|
|
|
#start image
|
|
exec apache2-foreground |