From 502d270fd1caf342eaa13d0d59f0de16dc027a45 Mon Sep 17 00:00:00 2001 From: Ben van Hartingsveldt Date: Fri, 27 Jun 2025 16:38:06 +0200 Subject: [PATCH] Add PHP-FPM --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3751d7a..6b1921e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,4 +59,4 @@ RUN mv opcache.ini /usr/local/etc/php/conf.d/ VOLUME /var/www/html/storage/framework/cache/data # Cache project and Start PHP-FPM and NGINX -CMD php artisan optimize; php artisan event:cache; php artisan view:cache; sh -c "php artisan queue:work &"; nginx -g "daemon off;" +CMD php artisan optimize; php artisan event:cache; php artisan view:cache; sh -c "php artisan queue:work &"; php-fpm -D; nginx -g "daemon off;"