File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11![ Docker Stack] ( public/docker_stack_banner.jpg )
22
3- ![ PHP 8] ( https://img.shields.io/badge/PHP-8.0 -8892BF.svg )
4- ![ MariaDB] ( https://img.shields.io/badge/Database_Server-MariaDB_10.6 -c0765a.svg )
3+ ![ PHP 8] ( https://img.shields.io/badge/PHP-8.1 -8892BF.svg )
4+ ![ MariaDB] ( https://img.shields.io/badge/Database_Server-MariaDB_10.7 -c0765a.svg )
55![ nginx] ( https://img.shields.io/badge/Webserver-nginx_1.21-009447.svg )
66![ Redis] ( https://img.shields.io/badge/Cache_Engine-Redis_6-D92A2A.svg )
77![ Laravel ready!] ( https://img.shields.io/badge/Laravel-Ready_✔-e74430.svg )
@@ -31,7 +31,7 @@ Part of the docker-compose
3131# --- PHP
3232php:
3333 container_name: "project-php"
34- image: bitnami/php-fpm:8.0
34+ image: bitnami/php-fpm:8.1
3535 volumes:
3636 - .:/app:delegated
3737 - ./docker/php.ini:/opt/bitnami/php/etc/conf.d/php.ini:ro
4141 container_name: "project-nginx"
4242 image: bitnami/nginx:1.21
4343 ports:
44- - "127.0.0.1:80:8085 "
44+ - "127.0.0.1:80:8080 "
4545 depends_on:
4646 - php
4747 volumes:
@@ -53,12 +53,12 @@ This is the definition of the PHP and nginx containers. As you can see it runs w
5353
5454### Current Service Versions
5555
56- | Service | Version |
57- | -------- | -------- |
58- | PHP | 8.0 |
59- | MariaDB | 10.6 |
60- | nginx | 1.21 |
61- | Redis | 6.2 |
56+ | Service | Version |
57+ | -------- | --------- |
58+ | PHP | 8.1 |
59+ | MariaDB | 10.7 |
60+ | nginx | 1.21 |
61+ | Redis | 6.2 |
6262
6363
6464## Setup & Configuration
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ services:
66 # --- MariaDB
77 db :
88 container_name : " ${APP_NAME}-db"
9- image : bitnami/mariadb:10.6
9+ image : bitnami/mariadb:10.7
1010 environment :
1111 - MARIADB_ROOT_PASSWORD=${DB_PASSWORD}
1212 - MARIADB_USER=${DB_USERNAME}
@@ -20,7 +20,7 @@ services:
2020 # --- PHP
2121 php :
2222 container_name : " ${APP_NAME}-php"
23- image : bitnami/php-fpm:8.0
23+ image : bitnami/php-fpm:8.1
2424 depends_on :
2525 - db
2626 - redis
You can’t perform that action at this time.
0 commit comments