From f8ec85f07a7aa169e1f55448f8439251bf047779 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tam=C3=A1s=20H=2E?=
<36476318+Tamas-hi@users.noreply.github.com>
Date: Sat, 13 Dec 2025 18:59:28 +0100
Subject: [PATCH 1/2] Fix typo in PHP INI file instructions
---
docs/content/docs/1.getting-started/6.default-configurations.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/docs/1.getting-started/6.default-configurations.md b/docs/content/docs/1.getting-started/6.default-configurations.md
index 3f06a25f..aadb8ee1 100644
--- a/docs/content/docs/1.getting-started/6.default-configurations.md
+++ b/docs/content/docs/1.getting-started/6.default-configurations.md
@@ -75,7 +75,7 @@ Environment variables give you a ton of flexibility to customize your container
| **PHP INI file** | **Description** |
|-----------------|-----------------|
| **Image Default**
`/usr/local/etc/php/conf.d/serversideup-docker-php.ini` | This is our production-ready PHP ini file that accepts environment variables. You can [review it in greater detail on GitHub](https://github.com/serversideup/docker-php/blob/main/src/common/usr/local/etc/php/conf.d/serversideup-docker-php.ini){target="_blank"}. |
-| **Adding your own PHP INI file**
`/usr/local/etc/php/conf.d/*.ini` | If you want to use our defaults, you can simple create a `.ini` file in the `/usr/local/etc/php/conf.d/` directory and it will be loaded automatically. This will be loaded *after* our default ini file, so whatever you set in your own ini file will override the default values. |
+| **Adding your own PHP INI file**
`/usr/local/etc/php/conf.d/*.ini` | If you want to use your defaults, you can simple create a `.ini` file in the `/usr/local/etc/php/conf.d/` directory and it will be loaded automatically. This will be loaded *after* our default ini file, so whatever you set in your own ini file will override the default values. |
:u-button{to="/docs/customizing-the-image/changing-common-php-settings" label="Learn more about changing common PHP settings" aria-label="Learn more about changing common PHP settings" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
From 42d031fd440d476b3ab315cfa10ccc852f8881db Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tam=C3=A1s=20H=2E?=
<36476318+Tamas-hi@users.noreply.github.com>
Date: Sun, 21 Dec 2025 09:52:27 +0100
Subject: [PATCH 2/2] Update PHP extensions installation in Dockerfile
Redis is included by default, so lets give an example not installed by default
---
.../docs/1.getting-started/4.these-images-vs-others.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/content/docs/1.getting-started/4.these-images-vs-others.md b/docs/content/docs/1.getting-started/4.these-images-vs-others.md
index 253f8bfc..0d6f7941 100644
--- a/docs/content/docs/1.getting-started/4.these-images-vs-others.md
+++ b/docs/content/docs/1.getting-started/4.these-images-vs-others.md
@@ -197,7 +197,7 @@ FROM serversideup/php:8.5-cli
USER root
# Install any PHP extension easily
-RUN install-php-extensions redis imagick mongodb
+RUN install-php-extensions bcmath imagick mongodb
# Switch back to unprivileged user
USER www-data
@@ -322,4 +322,4 @@ We're here to help! Check out these resources:
::tip
Join our community! Star us on [GitHub](https://github.com/serversideup/docker-php) and follow updates.
-::
\ No newline at end of file
+::