updated php from 8.1 to 8.4

This commit is contained in:
2026-03-09 12:23:35 +01:00
parent ba9f49f4a5
commit 067841c724
9 changed files with 7 additions and 15 deletions
@@ -1,4 +1,4 @@
FROM php:8.1-fpm
FROM php:8.4-fpm
RUN apt-get update && apt-get install -y \
libfreetype6-dev \
@@ -19,20 +19,14 @@ RUN apt-get update && apt-get install -y \
RUN apt-get install -y git vim
RUN pecl install redis-5.3.3 && \
pecl install xdebug-3.2.2 && \
docker-php-ext-enable redis xdebug
RUN pecl install redis
RUN pecl install xdebug-3.5.0
RUN docker-php-ext-enable redis xdebug
RUN export COMPOSER_HOME=/usr/local/composer && \
curl -sS https://getcomposer.org/installer \
| php -- --install-dir=/usr/local/bin --filename=composer && \
curl https://drupalconsole.com/installer \
-L -o /usr/local/bin/drupal && \
chmod +x /usr/local/bin/drupal && \
curl https://github.com/drush-ops/drush-launcher/releases/download/0.6.0/drush.phar \
-L -o /usr/local/bin/drush && \
chmod +x /usr/local/bin/drush
# RUN apt-get install -y curl && \
# curl -sL https://deb.nodesource.com/setup_11.x | bash - && \
# curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
+1 -3
View File
@@ -1,5 +1,3 @@
version: "3.5"
services:
mysql:
image: mariadb:latest
@@ -27,7 +25,7 @@ services:
- "6379"
php:
build: ./Docker/php-8.1-fpm/
build: ./Docker/php-8.4-fpm/
user: ${USER_UID}:${USER_GID}
volumes:
- php-user-data:/home/${USER_UNAME}
+1 -1
Submodule src_d9 updated: 11bb49e694...18dd8199a9