Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit a336d34

Browse files
Upgrade to PHP 8.4.1, Xdebub 3.4.0beta1 and MariaDB 11.6.2
1 parent fab1591 commit a336d34

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

‎README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Docker compose PHP 8.3.13, Xdebug 3.3.2, Nginx 1.27.2, Redis 7.4.1 and MariaDB 11.5.2
1+
# Docker compose PHP 8.4.1, Xdebug 3.4.0beta1, Nginx 1.27.2, Redis 7.4.1 and MariaDB 11.6.2
22

33
![docker](https://img.shields.io/badge/Docker-compose-brightgreen.svg)
44
![nginx](https://img.shields.io/badge/nginx-1.27.2-brightgreen.svg)
5-
![php](https://img.shields.io/badge/PHP_FPM-8.3.13-brightgreen.svg)
6-
![xdebug](https://img.shields.io/badge/Xdebug-3.3.2-brightgreen.svg)
5+
![php](https://img.shields.io/badge/PHP_FPM-8.4.1-brightgreen.svg)
6+
![xdebug](https://img.shields.io/badge/Xdebug-3.4.0beta1-brightgreen.svg)
77
![phpunit](https://img.shields.io/badge/PHPUnit-11.4.3-brightgreen.svg)
88
![redis](https://img.shields.io/badge/Redis-7.4.1-brightgreen.svg)
9-
![mariadb](https://img.shields.io/badge/MariaDB-11.5.2-brightgreen.svg)
9+
![mariadb](https://img.shields.io/badge/MariaDB-11.6.2-brightgreen.svg)
1010

1111
# Goal of this project
1212

@@ -15,13 +15,13 @@ The primary goal of this project is to create a streamlined and efficient develo
1515
# Services
1616

1717
* Easy setup with [docker compose](https://docs.docker.com/compose/) and [Dockerfile](https://docs.docker.com/engine/reference/builder/) under usage from [Docker](https://www.docker.com)
18-
* Uses [PHP 8.3.13](https://www.php.net) for better performance, lower CPU and memory usage
18+
* Uses [PHP 8.4.1](https://www.php.net) for better performance, lower CPU and memory usage
1919
* And [composer the dependency manager for PHP](https://getcomposer.org) to start easy your project
2020
* Built on the lightweight [nginx 1.27.2](https://nginx.org) webserver
21-
* Debugging with [Xdebug 3.3.2](https://xdebug.org)
21+
* Debugging with [Xdebug 3.4.0beta1](https://xdebug.org)
2222
* Testing with [PHPUnit 11.4.3](https://phpunit.de) to ensure code quality and reliability
2323
* [Redis 7.4.1](https://redis.io) as session storage, database, cache, streaming engine, and message broker
24-
* Database storage with [MariaDB 11.5.2](https://mariadb.org)
24+
* Database storage with [MariaDB 11.6.2](https://mariadb.org)
2525

2626
## Setup Instructions
2727

‎compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ services:
2929
ALLOW_EMPTY_PASSWORD: "yes"
3030

3131
mariadb:
32-
image: "mariadb:11.5.2"
32+
image: "mariadb:11.6.2"
3333
restart: always
3434
working_dir: /app
3535
volumes:

‎docker/php-fpm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3.13-fpm
1+
FROM php:8.4.1-fpm
22
WORKDIR "/app"
33

44
# Update
@@ -17,7 +17,7 @@ RUN pecl install -o -f redis && docker-php-ext-enable redis
1717
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
1818

1919
# Install xdebug
20-
RUN pecl install xdebug-3.3.2 && docker-php-ext-enable xdebug
20+
RUN pecl install xdebug-3.4.0beta1 && docker-php-ext-enable xdebug
2121

2222
# Cleanup
2323
RUN apt-get clean

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /