You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -165,7 +165,7 @@ This image comes with 2 "types": the *slim* and the **fat** image.
165
165
166
166
These extensions are enabled by default in slim image: `calendar``ctype``curl``date``dom``exif``fileinfo``filter``ftp``gettext``iconv``json``mbstring``opcache``openssl``pcntl``pcre``PDO``Phar``posix``readline``shmop``Reflection``session``shmop``SimpleXML``sockets``sodium``SPL``sysvmsg``sysvsem``sysvshm``tokenizer``xml``xmlreader``xmlwriter``xsl``zip`
167
167
168
-
This list can be outdated, you can verify by executing : `docker run --rm -it thecodingmachine/php:8.0-v4-slim-cli php -m`
168
+
This list can be outdated, you can verify by executing : `docker run --rm -it thecodingmachine/php:8.1-v4-slim-cli php -m`
169
169
170
170
The slim image provides a simple way to install the other extensions. You would typically use the "slim" image in a `Dockerfile` when building your own custom image.
171
171
@@ -179,7 +179,7 @@ Below is a list of extensions available in this image:
179
179
180
180
**Available (can be enabled using environment variables):**`amqp``ast``bcmath``blackfire``bz2``dba``ds``enchant``ev``event``exif``mailparse``msgpack``gd``gettext``gmp``gnupg``grpc``igbinary``imagick``imap``intl``ldap``mcrypt``memcached``mongodb``pcov``pdo_dblib``pdo_pgsql``pdo_sqlite``pgsql``pspell``shmop``snmp``sockets``sqlite3``swoole``tidy``uploadprogress``uuid``weakref(-beta)``xdebug``xmlrpc``xsl``yaml`
181
181
182
-
This list can be outdated, you can verify by executing : `docker run --rm -it thecodingmachine/php:8.0-v4-cli php -m`
182
+
This list can be outdated, you can verify by executing : `docker run --rm -it thecodingmachine/php:8.1-v4-cli php -m`
183
183
184
184
**Note**:
185
185
@@ -199,7 +199,7 @@ For instance:
199
199
version: '3'
200
200
services:
201
201
my_app:
202
-
image: thecodingmachine/php:8.0-v4-apache-node16
202
+
image: thecodingmachine/php:8.1-v4-apache-node16
203
203
environment:
204
204
# Enable the PostgreSQL extension
205
205
PHP_EXTENSION_PGSQL: 1
@@ -219,7 +219,7 @@ If you are using the slim image, you can automatically compile the extensions us
# The build will automatically trigger the download and compilation
224
224
# of the extensions (thanks to a ONBUILD hook in the slim image)
225
225
```
@@ -235,7 +235,7 @@ first FROM):
235
235
# The PHP_EXTENSIONS ARG will apply to the "slim" image
236
236
ARG PHP_EXTENSIONS="apcu mysqli pdo_mysql soap"
237
237
238
-
FROM thecodingmachine/php:8.0-v4-apache-node16 AS builder
238
+
FROM thecodingmachine/php:8.1-v4-apache-node16 AS builder
239
239
240
240
COPY --chown=docker:docker sources/web .
241
241
RUN composer install &&\
@@ -256,7 +256,7 @@ not contain Node, and contains only required extensions.
256
256
257
257
## Setting parameters in php.ini
258
258
259
-
By default, the base `php.ini` file used is the [*development* php.ini](https://github.com/php/php-src/blob/PHP-8.0/php.ini-development) file that comes with PHP.
259
+
By default, the base `php.ini` file used is the [*development* php.ini](https://github.com/php/php-src/blob/PHP-8.1/php.ini-development) file that comes with PHP.
260
260
261
261
You can use the production `php.ini` file using the `TEMPLATE_PHP_INI` environment variable:
262
262
@@ -271,7 +271,7 @@ You can override parameters in `php.ini` using the PHP_INI_XXX environment varia
0 commit comments