Skip to content

Commit

Permalink
Update the stack to PHP 8.1 and MariaDB 10.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Kovah committed Oct 10, 2022
1 parent 303a4df commit 594f6fb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![Docker Stack](public/docker_stack_banner.jpg)

![PHP 8](https://img.shields.io/badge/PHP-8.0-8892BF.svg)
![MariaDB](https://img.shields.io/badge/Database_Server-MariaDB_10.6-c0765a.svg)
![PHP 8](https://img.shields.io/badge/PHP-8.1-8892BF.svg)
![MariaDB](https://img.shields.io/badge/Database_Server-MariaDB_10.7-c0765a.svg)
![nginx](https://img.shields.io/badge/Webserver-nginx_1.21-009447.svg)
![Redis](https://img.shields.io/badge/Cache_Engine-Redis_6-D92A2A.svg)
![Laravel ready!](https://img.shields.io/badge/Laravel-Ready_✔-e74430.svg)
Expand Down Expand Up @@ -31,7 +31,7 @@ Part of the docker-compose
# --- PHP
php:
container_name: "project-php"
image: bitnami/php-fpm:8.0
image: bitnami/php-fpm:8.1
volumes:
- .:/app:delegated
- ./docker/php.ini:/opt/bitnami/php/etc/conf.d/php.ini:ro
Expand All @@ -41,7 +41,7 @@ nginx:
container_name: "project-nginx"
image: bitnami/nginx:1.21
ports:
- "127.0.0.1:80:8085"
- "127.0.0.1:80:8080"
depends_on:
- php
volumes:
Expand All @@ -53,12 +53,12 @@ This is the definition of the PHP and nginx containers. As you can see it runs w

### Current Service Versions

| Service | Version |
| -------- | -------- |
| PHP | 8.0 |
| MariaDB | 10.6 |
| nginx | 1.21 |
| Redis | 6.2 |
| Service | Version |
| -------- |---------|
| PHP | 8.1 |
| MariaDB | 10.7 |
| nginx | 1.21 |
| Redis | 6.2 |


## Setup & Configuration
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
# --- MariaDB
db:
container_name: "${APP_NAME}-db"
image: bitnami/mariadb:10.6
image: bitnami/mariadb:10.7
environment:
- MARIADB_ROOT_PASSWORD=${DB_PASSWORD}
- MARIADB_USER=${DB_USERNAME}
Expand All @@ -20,7 +20,7 @@ services:
# --- PHP
php:
container_name: "${APP_NAME}-php"
image: bitnami/php-fpm:8.0
image: bitnami/php-fpm:8.1
depends_on:
- db
- redis
Expand Down

0 comments on commit 594f6fb

Please sign in to comment.