Skip to content

Commit 55ef0f9

Browse files
committed
Run docker with PHP 8.4
1 parent 84b11a7 commit 55ef0f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.docker/PHP83-Dockerfile renamed to .docker/PHP84-Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3-fpm
1+
FROM php:8.4-fpm
22

33
RUN apt-get update
44
RUN apt-get --yes --no-install-recommends install \
@@ -34,7 +34,7 @@ RUN docker-php-ext-install -j$(nproc) \
3434
COPY build/php/opcache.ini /usr/local/etc/php/conf.d/
3535
COPY build/php/custom.ini /usr/local/etc/php/conf.d/
3636

37-
RUN pecl install xdebug-3.3.0alpha3 && docker-php-ext-enable xdebug
37+
RUN pecl install xdebug-3.4.0 && docker-php-ext-enable xdebug
3838

3939
RUN php --version
4040

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
# Specify where the Dockerfile is located (e.g. in the root directory of the project)
99
context: .docker
1010
# Specify the name of the Dockerfile for changing the PHP version
11-
dockerfile: PHP83-Dockerfile
11+
dockerfile: PHP84-Dockerfile
1212
# Modifiy Ports for every project: <outside>:<inside>
1313
ports:
1414
- 8200:80

0 commit comments

Comments
 (0)