diff --git a/.docker/Dockerfile-php82 b/.docker/PHP83-Dockerfile similarity index 93% rename from .docker/Dockerfile-php82 rename to .docker/PHP83-Dockerfile index a616cf7..f0eb8a8 100644 --- a/.docker/Dockerfile-php82 +++ b/.docker/PHP83-Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2-fpm +FROM php:8.3-fpm RUN apt-get update RUN apt-get --yes --no-install-recommends install \ @@ -34,7 +34,7 @@ RUN docker-php-ext-install -j$(nproc) \ COPY build/php/opcache.ini /usr/local/etc/php/conf.d/ COPY build/php/custom.ini /usr/local/etc/php/conf.d/ -RUN pecl install xdebug-3.2.1 && docker-php-ext-enable xdebug +RUN pecl install xdebug-3.3.0alpha3 && docker-php-ext-enable xdebug RUN php --version diff --git a/docker-compose.yml b/docker-compose.yml index e51cf35..5457f40 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: # Specify where the Dockerfile is located (e.g. in the root directory of the project) context: .docker # Specify the name of the Dockerfile for changing the PHP version - dockerfile: Dockerfile-php82 + dockerfile: PHP83-Dockerfile # Modifiy Ports for every project: : ports: - 8200:80