Add lumen detection to queue,schedule contianers

This commit is contained in:
Deon George 2020-09-17 13:24:57 +10:00
parent 8cc6e595e3
commit c05c67ec02
2 changed files with 19 additions and 12 deletions

28
init
View File

@ -114,11 +114,15 @@ elif [ "$role" = "queue" -a -e artisan ]; then
exec /bin/bash
fi
# We only check for non mount points, in case this container has the app inside
mp=$(mp ${php})
if [ ${mp} -eq 1 ]; then
echo "* Caching configuration..."
su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)"
if [ -e .lumen ]; then
echo "* Lumen detected..."
else
# We only check for non mount points, in case this container has the app inside
mp=$(mp ${php})
if [ ${mp} -eq 1 ]; then
echo "* Caching configuration..."
su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)"
fi
fi
echo "* Running the queue..."
@ -137,11 +141,15 @@ elif [ "$role" = "scheduler" -a -e artisan ]; then
exec /bin/bash
fi
# We only check for non mount points, in case this container has the app inside
mp=$(mp ${php})
if [ ${mp} -eq 1 ]; then
echo "* Caching configuration..."
su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)"
if [ -e .lumen ]; then
echo "* Lumen detected..."
else
# We only check for non mount points, in case this container has the app inside
mp=$(mp ${php})
if [ ${mp} -eq 1 ]; then
echo "* Caching configuration..."
su www-data -s /bin/sh -c "(php artisan config:cache && php artisan route:cache && php artisan view:cache)"
fi
fi
echo "* Running the scheduler..."

View File

@ -2,9 +2,8 @@ server {
listen 80 default_server;
listen [::]:80 default_server;
access_log none;
access_log off;
client_max_body_size 10m;
error_log none;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 16k;
index index.php index.html;