From 070db236efaa7e5bef199fdc3ca0808b172810d6 Mon Sep 17 00:00:00 2001 From: SaEEd Date: Thu, 18 Jan 2024 09:04:50 +0330 Subject: [PATCH] update log error --- entrypoint.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index f77646a..3b04200 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,8 +1,10 @@ #!/bin/bash -php artisan migrate --force -php artisan optimize:clear -php artisan package:discover --ansi -php artisan event:cache -php artisan config:cache -php artisan route:cache + +su -c "php artisan migrate --force" octane +su -c "php artisan optimize:clear" octane +su -c "php artisan package:discover --ansi" octane +su -c "php artisan event:cache" octane +su -c "php artisan config:cache" octane +su -c "php artisan route:cache" octane + exec supervisord --configuration /etc/supervisor/octane.conf