php/init

98 lines
3.1 KiB
Plaintext
Raw Normal View History

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}
env=${APP_ENV:-live}
2020-01-15 03:28:57 +00:00
php=${PHP_DIR:-/var/www/html}
2020-01-15 03:50:14 +00:00
composer=${COMPOSER_DIR:-/var/www/.composer}
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
if [ "${role}" = "app" -a -e artisan ]; then
2020-01-15 03:50:14 +00:00
if [ ! -e ${php}/.env ]; then
2020-01-15 03:28:57 +00:00
echo "! ERROR: NO .env file..."
exec /bin/bash
fi
# Only adjust perms if this is an external mountpoint
if mountpoint -q ${php}; then
if [ "${env}" != "dev" -a -z "${SKIP_PERM}" ]; then
echo "* Setting Permissions..."
# Make sure our permissions are appropraite
find ${php} -type f -exec chmod 640 {} \;
find ${php} -type d -exec chmod 750 {} \;
chmod o+rx ${php}
chmod -R o+rx ${php}/public
chown -R lamp:www-data ${php}
chown -R www-data:www-data ${php}/storage ${php}/bootstrap ${php}/composer.*
[ -e ${php}/vendor ] && chown -R www-data:www-data ${php}/vendor
fi
fi
2020-01-15 03:28:57 +00:00
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.json && ( -e .composer.refresh || ! -d vendor ) ]]; then
2020-01-15 03:28:57 +00:00
rm -f ${php}/bootstrap/cache/*.php
2020-01-15 06:53:50 +00:00
if [ "${env}" != "dev" ]; then
NODEV="--no-dev"
fi
if mountpoint -q ${composer}; then
[ "${env}" != "dev" -a -z "${SKIP_PERM}" ] && chown -R www-data:www-data ${composer}
[ ! -d ${php}/vendor ] && mkdir -m 750 ${php}/vendor && chown www-data:www-data ${php}/vendor
[ "${env}" != "dev" -a -z "${SKIP_PERM}" ] && chmod g+w ${php}
fi
su www-data -s /bin/sh -c "composer install --optimize-autoloader ${NODEV}" && ( test -e .composer.refresh && rm -f .composer.refresh )
[ "${env}" != "dev" -a -z "${SKIP_PERM}" ] && mountpoint -q ${composer} && chmod g-w ${php}
2018-05-08 05:36:11 +00:00
fi
if [ -r .migrate ]; then
echo "Running migration..."
2020-01-15 03:28:57 +00:00
su www-data -s /bin/sh -c "php artisan migrate && rm -f .migrate"
fi
2018-05-07 03:58:55 +00:00
echo "Caching configuration..."
su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)"
2018-05-07 03:58:55 +00:00
fi
exec /usr/local/bin/docker-php-entrypoint "$@"
elif [ "$role" = "queue" -a -e artisan ]; then
2020-01-15 03:50:14 +00:00
if [ ! -e ${php}/.env ]; then
2020-01-15 03:28:57 +00:00
echo "! ERROR: NO .env file..."
exec /bin/bash
fi
echo "Running the queue..."
2018-05-07 03:58:55 +00:00
# We'll delay starting in case the app is caching
sleep 15
2020-01-15 03:28:57 +00:00
while true; do
php ${PHP_OPTIONS} artisan queue:work --verbose --once --tries=${WORK_TRIES:-1} --timeout=${WORK_TIMEOUT:-90} ${WORK_QUEUES:+--queue=${WORK_QUEUES}} ${WORK_MEMORY:+--memory=${WORK_MEMORY}}
done
elif [ "$role" = "scheduler" -a -e artisan ]; then
2020-01-15 03:50:14 +00:00
if [ ! -e ${php}/.env ]; then
2020-01-15 03:28:57 +00:00
echo "! ERROR: NO .env file..."
exec /bin/bash
fi
2018-05-07 03:58:55 +00:00
echo "Running the scheduler..."
# We'll delay starting in case the app is caching
sleep 15
while [ true ]; do
2018-05-07 03:53:29 +00:00
php ${PHP_OPTIONS} artisan schedule:run --verbose --no-interaction &
sleep 60
done
else
echo "NO container role \"${role}\", AND/OR no laravel install, just starting php-fpm"
exec /usr/local/bin/docker-php-entrypoint "$@"
fi