2017-12-13 10:54:20 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-12-13 22:40:56 +00:00
|
|
|
if [ -x /usr/sbin/sshd -a "${SSH_START}" = "TRUE" ]; then
|
|
|
|
[ ! -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:34:45 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
role=${CONTAINER_ROLE:-app}
|
|
|
|
env=${APP_ENV:-production}
|
|
|
|
|
|
|
|
if [ "${env}" != "local" -a -r "artisan" ]; then
|
|
|
|
echo "Caching configuration..."
|
|
|
|
(cd /var/www/html && php artisan config:cache && php artisan route:cache && php artisan view:cache)
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${role}" = "app" ]; then
|
|
|
|
|
|
|
|
exec /usr/local/bin/docker-php-entrypoint "$@"
|
|
|
|
|
|
|
|
elif [ "$role" = "queue" ]; then
|
|
|
|
|
|
|
|
echo "Running the queue..."
|
|
|
|
php /var/www/html/artisan queue:work --verbose --tries=3 --timeout=90
|
|
|
|
|
|
|
|
elif [ "$role" = "scheduler" ]; then
|
|
|
|
|
|
|
|
while [ true ]; do
|
|
|
|
php /var/www/html/artisan schedule:run --verbose --no-interaction &
|
|
|
|
sleep 60
|
|
|
|
done
|
|
|
|
|
|
|
|
else
|
|
|
|
echo "Could not match the container role \"${role}\""
|
|
|
|
exit 1
|
|
|
|
fi
|