Skip to content

Commit 4528113

Browse files
authored
Merge pull request #103 from Art4/update-docker-files
Update docker files
2 parents d3e2597 + da9b45a commit 4528113

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
# SPDX-FileCopyrightText: 2015-2023 Artur Weigandt https://wlabs.de/kontakt
22
# SPDX-License-Identifier: GPL-3.0-or-later
33

4-
version: "3.7"
5-
64
services:
75
php:
86
# Info to build the Docker image
97
build:
108
# Specify where the Dockerfile is located (e.g. in the root directory of the project)
119
context: .docker
1210
# Specify the name of the Dockerfile for changing the PHP version
13-
dockerfile: PHP83-Dockerfile
11+
dockerfile: PHP84-Dockerfile
1412
# Modifiy Ports for every project: <outside>:<inside>
1513
ports:
1614
- 8200:80

0 commit comments

Comments
 (0)