-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Raise to PHP 8.3.8, Nginx 1.27.0, Redis 7.2.5 and MariaDB 11.4.2
- Loading branch information
Marc Wolf
committed
Jun 7, 2024
1 parent
2b07157
commit 884d5ad
Showing
4 changed files
with
13 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# Docker compose PHP 8.3.7, Xdebug 3.3.2, Nginx 1.26.0, Redis 7.2.4 and MariaDB 11.4.1-rc | ||
# Docker compose PHP 8.3.8, Xdebug 3.4.0, Nginx 1.27.0, Redis 7.2.5 and MariaDB 11.4.2 | ||
|
||
![docker](https://img.shields.io/badge/Docker-compose-brightgreen.svg) | ||
![php](https://img.shields.io/badge/PHP_FPM-8.3.7-brightgreen.svg) | ||
![php](https://img.shields.io/badge/PHP_FPM-8.3.8-brightgreen.svg) | ||
![xdebug](https://img.shields.io/badge/Xdebug-3.3.2-brightgreen.svg) | ||
![nginx](https://img.shields.io/badge/nginx-1.26.0-brightgreen.svg) | ||
![redis](https://img.shields.io/badge/Redis-7.2.4-brightgreen.svg) | ||
![mariadb](https://img.shields.io/badge/MariaDB-11.4.1-rc-brightgreen.svg) | ||
![nginx](https://img.shields.io/badge/nginx-1.27.0-brightgreen.svg) | ||
![redis](https://img.shields.io/badge/Redis-7.2.5-brightgreen.svg) | ||
![mariadb](https://img.shields.io/badge/MariaDB-11.4.2-brightgreen.svg) | ||
|
||
* 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) | ||
* Uses [PHP 8.3.7](https://www.php.net) for better performance, lower CPU and memory usage | ||
* Uses [PHP 8.3.8](https://www.php.net) for better performance, lower CPU and memory usage | ||
* And [composer the dependency manager for PHP](https://getcomposer.org) to start easy your project | ||
* Built on the lightweight [nginx 1.26.0](https://nginx.org) webserver | ||
* Built on the lightweight [nginx 1.27.0](https://nginx.org) webserver | ||
* Debugging with [Xdebug 3.3.2](https://xdebug.org) | ||
* [Redis 7.2.4](https://redis.io) as session storage, database, cache, streaming engine, and message broker | ||
* Database storage with [MariaDB 11.4.1-rc](https://mariadb.org) | ||
* [Redis 7.2.5](https://redis.io) as session storage, database, cache, streaming engine, and message broker | ||
* Database storage with [MariaDB 11.4.2](https://mariadb.org) | ||
|
||
See also: | ||
[Blog-Post: Dockerize your PHP application with Nginx and PHP8 FPM](https://marc.it/dockerize-application-with-nginx-and-php8/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:8.3.7-fpm | ||
FROM php:8.3.8-fpm | ||
WORKDIR "/app" | ||
|
||
# Update | ||
|