Skip to content

Commit a879ed8

Browse files
author
Marc Wolf
committed
[TASK] Change to PHP 8.2.10 and MariaDB 11.1.2
1 parent e415cb2 commit a879ed8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# Docker compose PHP FPM 8.2.9, Xdebug 3.2.2, Nginx 1.25.2, Redis 7.2 and MariaDB 11.1.1
1+
# Docker compose PHP FPM 8.2.10, Xdebug 3.2.2, Nginx 1.25.2, Redis 7.2 and MariaDB 11.1.2
22

33
![docker](https://img.shields.io/badge/Docker-compose-brightgreen.svg)
4-
![php](https://img.shields.io/badge/PHP_FPM-8.2.9-brightgreen.svg)
4+
![php](https://img.shields.io/badge/PHP_FPM-8.2.10-brightgreen.svg)
55
![xdebug](https://img.shields.io/badge/Xdebug-3.2.2-brightgreen.svg)
66
![nginx](https://img.shields.io/badge/nginx-1.25.2-brightgreen.svg)
77
![redis](https://img.shields.io/badge/Redis-7.2-brightgreen.svg)
8-
![mariadb](https://img.shields.io/badge/MariaDB-11.1.1-brightgreen.svg)
8+
![mariadb](https://img.shields.io/badge/MariaDB-11.1.2-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.2.9](https://www.php.net) for better performance, lower CPU and memory usage
11+
* Uses [PHP 8.2.10](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
1313
* Built on the lightweight [nginx 1.25.2](https://nginx.org) webserver
1414
* Debugging with [Xdebug 3.2.2](https://xdebug.org)
1515
* [Redis 7.2](https://redis.io) as session storage, database, cache, streaming engine, and message broker
16-
* Database storage with [MariaDB 11.1.1](https://mariadb.org)
16+
* Database storage with [MariaDB 11.1.2](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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
XDEBUG_MODE: "debug"
2626

2727
mariadb:
28-
image: "mariadb:11.1.1-rc"
28+
image: "mariadb:11.1.2"
2929
restart: always
3030
working_dir: /app
3131
volumes:
@@ -42,6 +42,6 @@ services:
4242
- "3306:3306"
4343

4444
redis:
45-
image: "redis:7.2-rc3-alpine"
45+
image: "redis:7.2.0-alpine"
4646
environment:
4747
ALLOW_EMPTY_PASSWORD: "yes"

docker/php-fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.2.9-fpm
1+
FROM php:8.2.10-fpm
22
WORKDIR "/app"
33

44
# Update

0 commit comments

Comments
 (0)