Skip to content

Commit 364fccc

Browse files
author
Marc Wolf
committed
[TASK] Change to Nginx 1.25.3, Redis 7.2.3 and MariaDB 11.1.3
1 parent 0da3ff5 commit 364fccc

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# Docker compose PHP FPM 8.3, Xdebug 3, Nginx 1.25.2, Redis 7.2.1 and MariaDB 11.1.2
1+
# Docker compose PHP FPM 8.3, Xdebug 3, Nginx 1.25.3, Redis 7.2.3 and MariaDB 11.1.3
22

33
![docker](https://img.shields.io/badge/Docker-compose-brightgreen.svg)
44
![php](https://img.shields.io/badge/PHP_FPM-8.3.0RC6-brightgreen.svg)
55
![xdebug](https://img.shields.io/badge/Xdebug-3.3.0alpha3-brightgreen.svg)
6-
![nginx](https://img.shields.io/badge/nginx-1.25.2-brightgreen.svg)
7-
![redis](https://img.shields.io/badge/Redis-7.2.1-brightgreen.svg)
8-
![mariadb](https://img.shields.io/badge/MariaDB-11.1.2-brightgreen.svg)
6+
![nginx](https://img.shields.io/badge/nginx-1.25.3-brightgreen.svg)
7+
![redis](https://img.shields.io/badge/Redis-7.2.3-brightgreen.svg)
8+
![mariadb](https://img.shields.io/badge/MariaDB-11.1.3-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)
1111
* Uses [PHP 8.3.0RC6](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.2](https://nginx.org) webserver
13+
* Built on the lightweight [nginx 1.25.3](https://nginx.org) webserver
1414
* Debugging with [Xdebug 3.3.0alpha3](https://xdebug.org)
15-
* [Redis 7.2.1](https://redis.io) as session storage, database, cache, streaming engine, and message broker
16-
* Database storage with [MariaDB 11.1.2](https://mariadb.org)
15+
* [Redis 7.2.3](https://redis.io) as session storage, database, cache, streaming engine, and message broker
16+
* Database storage with [MariaDB 11.1.3](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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.9"
22
services:
33
nginx:
4-
image: "nginx:1.25.2-alpine"
4+
image: "nginx:1.25.3-alpine"
55
restart: always
66
working_dir: /app
77
links:
@@ -24,8 +24,13 @@ services:
2424
environment:
2525
XDEBUG_MODE: "debug"
2626

27+
redis:
28+
image: "redis:7.2.3-alpine"
29+
environment:
30+
ALLOW_EMPTY_PASSWORD: "yes"
31+
2732
mariadb:
28-
image: "mariadb:11.1.2"
33+
image: "mariadb:11.1.3"
2934
restart: always
3035
working_dir: /app
3136
volumes:
@@ -40,8 +45,3 @@ services:
4045
MARIADB_PASSWORD: "${MARIADB_PASSWORD}"
4146
ports:
4247
- "3306:3306"
43-
44-
redis:
45-
image: "redis:7.2.1-alpine"
46-
environment:
47-
ALLOW_EMPTY_PASSWORD: "yes"

0 commit comments

Comments
 (0)