Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .docker/PHP83-Dockerfile → .docker/PHP84-Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3-fpm
FROM php:8.4-fpm

RUN apt-get update
RUN apt-get --yes --no-install-recommends install \
Expand Down Expand Up @@ -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.3.0alpha3 && docker-php-ext-enable xdebug
RUN pecl install xdebug-3.4.0 && docker-php-ext-enable xdebug

RUN php --version

Expand Down
4 changes: 1 addition & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# SPDX-FileCopyrightText: 2015-2023 Artur Weigandt https://wlabs.de/kontakt
# SPDX-License-Identifier: GPL-3.0-or-later

version: "3.7"

services:
php:
# Info to build the Docker image
build:
# 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: PHP83-Dockerfile
dockerfile: PHP84-Dockerfile
# Modifiy Ports for every project: <outside>:<inside>
ports:
- 8200:80
Expand Down