File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ RUN pecl install xdebug-3.4.1 \
6464# === php default ===
6565ENV PMF_TIMEZONE="Europe/Berlin" \
6666 PMF_ENABLE_UPLOADS=On \
67- PMF_MEMORY_LIMIT=2048M \
67+ PMF_MEMORY_LIMIT=4096M \
6868 PMF_DISABLE_HTACCESS="" \
6969 PHP_LOG_ERRORS=On \
7070 PHP_ERROR_REPORTING=E_ALL \
@@ -73,8 +73,8 @@ ENV PMF_TIMEZONE="Europe/Berlin" \
7373
7474# === Set custom entrypoint ===
7575COPY ./docker-entrypoint.sh /entrypoint
76- # RUN chmod +x /entrypoint
77- # ENTRYPOINT [ "/entrypoint" ]
76+ RUN chmod +x /entrypoint
77+ ENTRYPOINT [ "/entrypoint" ]
7878
7979# === Re-Set CMD as we changed the default entrypoint ===
8080CMD [ "php-fpm" ]
Original file line number Diff line number Diff line change 7272 echo " opcache.memory_consumption=192"
7373 echo " opcache.max_wasted_percentage=10"
7474 echo " opcache.interned_strings_buffer=16"
75- echo " opcache.fast_shutdown=1 "
75+ echo " opcache.fast_shutdown=0 "
7676} | tee $PHP_INI_DIR /conf.d/opcache-recommended.ini
7777
78- # === Start nginx and php-fpm ===
79- nginx
80- docker-php-entrypoint " $@ "
78+ # === Start php-fpm ===
79+ exec docker-php-entrypoint php-fpm
You can’t perform that action at this time.
0 commit comments