Skip to content

Commit 81d41e2

Browse files
committed
Update docker dev environment to PHP 8.3
1 parent 2ba023c commit 81d41e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.2-fpm
1+
FROM php:8.3-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.2.1 && docker-php-ext-enable xdebug
37+
RUN pecl install xdebug-3.3.0alpha3 && 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
@@ -10,7 +10,7 @@ services:
1010
# Specify where the Dockerfile is located (e.g. in the root directory of the project)
1111
context: .docker
1212
# Specify the name of the Dockerfile for changing the PHP version
13-
dockerfile: Dockerfile-php82
13+
dockerfile: PHP83-Dockerfile
1414
# Modifiy Ports for every project: <outside>:<inside>
1515
ports:
1616
- 8200:80

0 commit comments

Comments
 (0)