Skip to content

Commit 25ab682

Browse files
author
Marc Wolf
committed
[TASK] Raise versions for nginx 1.26.0, PHP 8.3.7, redis 7.2.4, MariaDB 11.4.1
1 parent 784613e commit 25ab682

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# Docker compose PHP 8.3.2, Xdebug 3.3.1, Nginx 1.25.3, Redis 7.2.4 and MariaDB 11.3.1-rc
1+
# Docker compose PHP 8.3.7, Xdebug 3.3.2, Nginx 1.26.0, Redis 7.2.4 and MariaDB 11.4.1-rc
22

33
![docker](https://img.shields.io/badge/Docker-compose-brightgreen.svg)
4-
![php](https://img.shields.io/badge/PHP_FPM-8.3.2-brightgreen.svg)
5-
![xdebug](https://img.shields.io/badge/Xdebug-3.3.1-brightgreen.svg)
6-
![nginx](https://img.shields.io/badge/nginx-1.25.3-brightgreen.svg)
4+
![php](https://img.shields.io/badge/PHP_FPM-8.3.7-brightgreen.svg)
5+
![xdebug](https://img.shields.io/badge/Xdebug-3.3.2-brightgreen.svg)
6+
![nginx](https://img.shields.io/badge/nginx-1.26.0-brightgreen.svg)
77
![redis](https://img.shields.io/badge/Redis-7.2.4-brightgreen.svg)
8-
![mariadb](https://img.shields.io/badge/MariaDB-11.3.1rc-brightgreen.svg)
8+
![mariadb](https://img.shields.io/badge/MariaDB-11.4.1-rc-brightgreen.svg)
99

1010
* 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)
11-
* Uses [PHP 8.3.2](https://www.php.net) for better performance, lower CPU and memory usage
11+
* Uses [PHP 8.3.7](https://www.php.net) for better performance, lower CPU and memory usage
1212
* And [composer the dependency manager for PHP](https://getcomposer.org) to start easy your project
13-
* Built on the lightweight [nginx 1.25.3](https://nginx.org) webserver
14-
* Debugging with [Xdebug 3.3.1](https://xdebug.org)
13+
* Built on the lightweight [nginx 1.26.0](https://nginx.org) webserver
14+
* Debugging with [Xdebug 3.3.2](https://xdebug.org)
1515
* [Redis 7.2.4](https://redis.io) as session storage, database, cache, streaming engine, and message broker
16-
* Database storage with [MariaDB 11.3.1-rc](https://mariadb.org)
16+
* Database storage with [MariaDB 11.4.1-rc](https://mariadb.org)
1717

1818
See also:
1919
[Blog-Post: Dockerize your PHP application with Nginx and PHP8 FPM](https://marc.it/dockerize-application-with-nginx-and-php8/)

docker-compose.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
version: "3.9"
21
services:
32
nginx:
4-
image: "nginx:1.25.3-alpine"
3+
image: "nginx:1.26.0-alpine"
54
restart: always
65
working_dir: /app
76
links:
@@ -30,7 +29,7 @@ services:
3029
ALLOW_EMPTY_PASSWORD: "yes"
3130

3231
mariadb:
33-
image: "mariadb:11.3.1-rc"
32+
image: "mariadb:11.4.1-rc"
3433
restart: always
3534
working_dir: /app
3635
volumes:

docker/php-fpm/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3.2-fpm
1+
FROM php:8.3.7-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.1 && docker-php-ext-enable xdebug
20+
RUN pecl install xdebug-3.3.2 && docker-php-ext-enable xdebug
2121

2222
# Cleanup
2323
RUN apt-get clean

0 commit comments

Comments
 (0)