@@ -229,7 +229,7 @@ If you're not already running an Apache server, you can run your X project with
229229Apache in a temporary Docker container like this:
230230
231231``` bash
232- $ docker run -it --rm -p 80:80 -v " $PWD " :/srv php:8.3 -apache sh -c " rmdir /var/www/html;ln -s /srv/public /var/www/html;ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled; apache2-foreground"
232+ $ docker run -it --rm -p 80:80 -v " $PWD " :/srv php:8.4 -apache sh -c " rmdir /var/www/html;ln -s /srv/public /var/www/html;ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled; apache2-foreground"
233233```
234234
235235In order to check your web application responds as expected, you can use your
@@ -313,10 +313,10 @@ limit to match your concurrency workload. On Ubuntu- or Debian-based systems,
313313you may change your PHP configuration like this:
314314
315315``` bash
316- $ sudoedit /etc/php/8.3 /cli/php.ini
316+ $ sudoedit /etc/php/8.4 /cli/php.ini
317317```
318318
319- ``` diff title="/etc/php/8.3 /cli/php.ini"
319+ ``` diff title="/etc/php/8.4 /cli/php.ini"
320320- memory_limit = 128M
321321+ memory_limit = -1
322322```
@@ -552,7 +552,7 @@ be achieved by using a `Dockerfile` with the following contents:
552552
553553 ```docker title="Dockerfile"
554554 # syntax=docker/dockerfile:1
555- FROM php:8.3 -cli
555+ FROM php:8.4 -cli
556556
557557 WORKDIR /app/
558558 COPY public/ public/
@@ -574,7 +574,7 @@ be achieved by using a `Dockerfile` with the following contents:
574574 COPY composer.json composer.lock ./
575575 RUN composer install --no-dev --ignore-platform-reqs --optimize-autoloader
576576
577- FROM php:8.3 -alpine
577+ FROM php:8.4 -alpine
578578
579579 # recommended: install optional extensions ext-ev and ext-sockets
580580 RUN apk --no-cache add ${PHPIZE_DEPS} libev linux-headers \
0 commit comments