File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ RUN docker-php-ext-enable redis
1818
1919RUN docker-php-ext-install bcmath
2020RUN docker-php-ext-install gmp
21+ RUN docker-php-ext-install mysqli
2122RUN docker-php-ext-install opcache
2223RUN docker-php-ext-install pdo
24+ RUN docker-php-ext-install pdo_mysql
2325
2426# Delete PHPize packages
2527RUN apk del --no-network --no-cache --purge .phpize
@@ -59,4 +61,4 @@ RUN mv opcache.ini /usr/local/etc/php/conf.d/
5961VOLUME /var/www/html/storage/framework/cache/data
6062
6163# Cache project and Start PHP-FPM and NGINX
62- 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;"
64+ CMD php artisan optimize; php artisan event:cache; php artisan view:cache; php-fpm -D; nginx -g "daemon off;"
You can’t perform that action at this time.
0 commit comments