Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frameworks/PHP/laravel/deploy/conf/php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -1770,14 +1770,14 @@ opcache.enable=1
opcache.enable_cli=1

; The OPcache shared memory storage size.
;opcache.memory_consumption=128
opcache.memory_consumption=256

; The amount of memory for interned strings in Mbytes.
;opcache.interned_strings_buffer=8

; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 1000000 are allowed.
;opcache.max_accelerated_files=10000
opcache.max_accelerated_files=20000

; The maximum percentage of "wasted" memory until a restart is scheduled.
;opcache.max_wasted_percentage=5
Expand Down
2 changes: 1 addition & 1 deletion frameworks/PHP/laravel/laravel.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php > /dev/null && \
apt-get update -yqq > /dev/null && apt-get upgrade -yqq > /dev/null

RUN apt-get install -yqq nginx git unzip \
php8.4-cli php8.4-fpm php8.4-mysql php8.4-mbstring php8.4-xml php8.4-curl > /dev/null
php8.4-bcmath php8.4-cli php8.4-fpm php8.4-mysql php8.4-mbstring php8.4-xml php8.4-curl php8.4-intl > /dev/null

COPY --from=composer --link /usr/bin/composer /usr/local/bin/composer

Expand Down
4 changes: 2 additions & 2 deletions frameworks/PHP/symfony/symfony.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php > /dev/null && \
apt-get update -yqq > /dev/null && apt-get upgrade -yqq > /dev/null

RUN apt-get install -yqq nginx git unzip curl \
php8.4-cli php8.4-fpm php8.4-pgsql \
php8.4-mbstring php8.4-xml php8.4-curl php8.4-dev > /dev/null
php8.4-bcmath php8.4-cli php8.4-fpm php8.4-pgsql \
php8.4-mbstring php8.4-xml php8.4-curl php8.4-dev php8.4-intl > /dev/null

COPY --from=composer/composer:latest-bin --link /composer /usr/local/bin/composer

Expand Down
Loading