2018-05-08 05:45:42 +00:00
|
|
|
#!/bin/bash
|
2017-12-13 10:54:20 +00:00
|
|
|
|
2018-05-07 03:45:43 +00:00
|
|
|
set -e
|
|
|
|
role=${CONTAINER_ROLE:-app}
|
2019-05-03 02:09:47 +00:00
|
|
|
env=${APP_ENV:-live}
|
2018-05-07 03:45:43 +00:00
|
|
|
|
|
|
|
# General Setup
|
2018-05-08 05:36:11 +00:00
|
|
|
if [ -x /usr/sbin/sshd -a "${SSH_START}" = "TRUE" ]; then
|
2017-12-13 22:40:56 +00:00
|
|
|
[ ! -d /var/run/sshd ] && mkdir /var/run/sshd
|
|
|
|
start-stop-daemon --start --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- -p 22
|
|
|
|
fi
|
2017-12-13 10:54:20 +00:00
|
|
|
|
2018-05-07 03:45:43 +00:00
|
|
|
# Laravel Specific
|
2019-05-03 02:09:47 +00:00
|
|
|
if [ "${role}" = "app" -a -e artisan ]; then
|
2018-05-07 03:58:55 +00:00
|
|
|
if [ "${env}" != "local" -a -r "artisan" ]; then
|
2018-05-08 05:36:11 +00:00
|
|
|
# See if we need to refresh our dependancies
|
|
|
|
if [[ -r composer.lock && ( -e .composer.refresh || ! -d vendor ) ]]; then
|
2018-05-08 05:56:49 +00:00
|
|
|
su www-data -s /bin/sh -c "composer install" && ( test -e .composer.refresh && rm -f .composer.refresh )
|
2018-05-08 05:36:11 +00:00
|
|
|
fi
|
|
|
|
|
2019-05-14 10:01:45 +00:00
|
|
|
if [ -r .migrate ]; then
|
|
|
|
echo "Running migration..."
|
|
|
|
php artisan migrate
|
|
|
|
rm -f .migrate
|
|
|
|
fi
|
|
|
|
|
2018-05-07 03:58:55 +00:00
|
|
|
echo "Caching configuration..."
|
|
|
|
(php artisan config:cache && php artisan route:cache && php artisan view:cache)
|
|
|
|
fi
|
2018-05-07 03:34:45 +00:00
|
|
|
|
|
|
|
exec /usr/local/bin/docker-php-entrypoint "$@"
|
|
|
|
|
2019-05-03 02:09:47 +00:00
|
|
|
elif [ "$role" = "queue" -a -e artisan ]; then
|
2018-05-07 03:34:45 +00:00
|
|
|
|
|
|
|
echo "Running the queue..."
|
2018-05-07 03:58:55 +00:00
|
|
|
# We'll delay starting in case the app is caching
|
|
|
|
sleep 15
|
2018-05-07 03:53:29 +00:00
|
|
|
php ${PHP_OPTIONS} artisan queue:work --verbose --tries=${WORK_TRIES:-1} --timeout=${WORK_TIMEOUT:-90} ${WORK_QUEUES:+--queue=${WORK_QUEUES}} ${WORK_MEMORY:+--memory=${WORK_MEMORY}}
|
2018-05-07 03:34:45 +00:00
|
|
|
|
2019-05-03 02:09:47 +00:00
|
|
|
elif [ "$role" = "scheduler" -a -e artisan ]; then
|
2018-05-07 03:34:45 +00:00
|
|
|
|
2018-05-07 03:58:55 +00:00
|
|
|
echo "Running the scheduler..."
|
|
|
|
# We'll delay starting in case the app is caching
|
|
|
|
sleep 15
|
|
|
|
|
2018-05-07 03:34:45 +00:00
|
|
|
while [ true ]; do
|
2018-05-07 03:53:29 +00:00
|
|
|
php ${PHP_OPTIONS} artisan schedule:run --verbose --no-interaction &
|
2018-05-07 03:34:45 +00:00
|
|
|
sleep 60
|
|
|
|
done
|
|
|
|
|
|
|
|
else
|
2019-05-03 02:09:47 +00:00
|
|
|
echo "NO container role \"${role}\", AND/OR no laravel install, just starting php-fpm"
|
|
|
|
exec /usr/local/bin/docker-php-entrypoint "$@"
|
2018-05-07 03:34:45 +00:00
|
|
|
fi
|