Skip to content

Commit

Permalink
Upgraded pecl extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
fox91 committed Apr 11, 2023
1 parent 0fbeb1d commit 8e0525d
Show file tree
Hide file tree
Showing 25 changed files with 68 additions and 26 deletions.
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/newrelic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.6.0.318
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/release/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux-musl.tar.gz \
| tar -xzC /tmp; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.52.1
ARG PHPEXT_GRPC_VERSION=1.53.0
RUN set -eux; \
persistentDeps=" \
libstdc++ \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_timezonedb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-timezonedb
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3
RUN set -eux; \
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \
docker-php-ext-install -j$(nproc) timezonedb; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.0
ARG PHPEXT_XDEBUG_VERSION=3.2.1
RUN set -eux; \
buildDeps=" \
linux-headers \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/newrelic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.6.0.318
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/archive/${PHPEXT_NEWRELIC_VERSION}/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux.tar.gz \
| tar -xzC /tmp; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.52.1
ARG PHPEXT_GRPC_VERSION=1.53.0
RUN set -eux; \
buildDeps=" \
libzip-dev \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_timezonedb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainer="Andrea Falco <[email protected]>"


# PHP ext-timezonedb
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3
RUN set -eux; \
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \
docker-php-ext-install -j$(nproc) timezonedb; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.0
ARG PHPEXT_XDEBUG_VERSION=3.2.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext xdebug-${PHPEXT_XDEBUG_VERSION}; \
docker-php-ext-install -j$(nproc) xdebug; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.17/newrelic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.17
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.6.0.318
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/release/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux-musl.tar.gz \
| tar -xzC /tmp; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.17/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.17
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.52.1
ARG PHPEXT_GRPC_VERSION=1.53.0
RUN set -eux; \
persistentDeps=" \
libstdc++ \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.17/pecl_timezonedb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.17
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-timezonedb
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3
RUN set -eux; \
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \
docker-php-ext-install -j$(nproc) timezonedb; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.17/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.17
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.0
ARG PHPEXT_XDEBUG_VERSION=3.2.1
RUN set -eux; \
buildDeps=" \
linux-headers \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bullseye/newrelic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.6.0.318
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/archive/${PHPEXT_NEWRELIC_VERSION}/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux.tar.gz \
| tar -xzC /tmp; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bullseye/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.52.1
ARG PHPEXT_GRPC_VERSION=1.53.0
RUN set -eux; \
buildDeps=" \
libzip-dev \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bullseye/pecl_timezonedb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainer="Andrea Falco <[email protected]>"


# PHP ext-timezonedb
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3
RUN set -eux; \
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \
docker-php-ext-install -j$(nproc) timezonedb; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bullseye/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.0
ARG PHPEXT_XDEBUG_VERSION=3.2.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext xdebug-${PHPEXT_XDEBUG_VERSION}; \
docker-php-ext-install -j$(nproc) xdebug; \
Expand Down
21 changes: 21 additions & 0 deletions 8.2/alpine3.17/newrelic/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM php:8.2-alpine3.17

LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/release/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux-musl.tar.gz \
| tar -xzC /tmp; \
export NR_INSTALL_USE_CP_NOT_LN=1; \
/tmp/newrelic-php5-*/newrelic-install install; \
\
sed -i \
-e 's/"REPLACE_WITH_REAL_KEY"/"YOUR_LICENSE_KEY"/' \
-e 's/newrelic.appname = "PHP Application"/newrelic.appname = "YOUR_APPLICATION_NAME"/' \
-e 's/;newrelic.daemon.app_connect_timeout =.*/newrelic.daemon.app_connect_timeout=15s/' \
-e 's/;newrelic.daemon.start_timeout =.*/newrelic.daemon.start_timeout=5s/' \
/usr/local/etc/php/conf.d/newrelic.ini \
; \
\
rm -rf /tmp/* /var/tmp/*
2 changes: 1 addition & 1 deletion 8.2/alpine3.17/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.2-alpine3.17
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.52.1
ARG PHPEXT_GRPC_VERSION=1.53.0
RUN set -eux; \
persistentDeps=" \
libstdc++ \
Expand Down
2 changes: 1 addition & 1 deletion 8.2/alpine3.17/pecl_timezonedb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.2-alpine3.17
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-timezonedb
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3
RUN set -eux; \
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \
docker-php-ext-install -j$(nproc) timezonedb; \
Expand Down
2 changes: 1 addition & 1 deletion 8.2/alpine3.17/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.2-alpine3.17
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.0
ARG PHPEXT_XDEBUG_VERSION=3.2.1
RUN set -eux; \
buildDeps=" \
linux-headers \
Expand Down
21 changes: 21 additions & 0 deletions 8.2/bullseye/newrelic/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM php:8.2-bullseye

LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.9.0.324
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/archive/${PHPEXT_NEWRELIC_VERSION}/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux.tar.gz \
| tar -xzC /tmp; \
export NR_INSTALL_USE_CP_NOT_LN=1; \
/tmp/newrelic-php5-*/newrelic-install install; \
\
sed -i \
-e 's/"REPLACE_WITH_REAL_KEY"/"YOUR_LICENSE_KEY"/' \
-e 's/newrelic.appname = "PHP Application"/newrelic.appname = "YOUR_APPLICATION_NAME"/' \
-e 's/;newrelic.daemon.app_connect_timeout =.*/newrelic.daemon.app_connect_timeout=15s/' \
-e 's/;newrelic.daemon.start_timeout =.*/newrelic.daemon.start_timeout=5s/' \
/usr/local/etc/php/conf.d/newrelic.ini \
; \
\
rm -rf /tmp/* /var/tmp/*
2 changes: 1 addition & 1 deletion 8.2/bullseye/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.2-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.52.1
ARG PHPEXT_GRPC_VERSION=1.53.0
RUN set -eux; \
buildDeps=" \
libzip-dev \
Expand Down
2 changes: 1 addition & 1 deletion 8.2/bullseye/pecl_timezonedb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainer="Andrea Falco <[email protected]>"


# PHP ext-timezonedb
ARG PHPEXT_TIMEZONEDB_VERSION=2022.7
ARG PHPEXT_TIMEZONEDB_VERSION=2023.3
RUN set -eux; \
pecl bundle -d /usr/src/php/ext timezonedb-${PHPEXT_TIMEZONEDB_VERSION}; \
docker-php-ext-install -j$(nproc) timezonedb; \
Expand Down
2 changes: 1 addition & 1 deletion 8.2/bullseye/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.2-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.0
ARG PHPEXT_XDEBUG_VERSION=3.2.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext xdebug-${PHPEXT_XDEBUG_VERSION}; \
docker-php-ext-install -j$(nproc) xdebug; \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Extension | PHP `8.0` `bullseye` | PHP `8.0` `alpine3.16` | PHP `8.1` `bullseye`
[`gearman`](https://pecl.php.net/package/gearman) _PECL_ | `(2.1.0)` [:whale:](8.0/bullseye/pecl_gearman/Dockerfile) | `(2.1.0)` [:whale:](8.0/alpine3.16/pecl_gearman/Dockerfile) | :x: | :x: | :x: | :x:
[`geospatial`](https://pecl.php.net/package/geospatial) _PECL_ | `(0.3.2)` [:whale:](8.0/bullseye/pecl_geospatial/Dockerfile) | `(0.3.2)` [:whale:](8.0/alpine3.16/pecl_geospatial/Dockerfile) | `(0.3.2)` [:whale:](8.1/bullseye/pecl_geospatial/Dockerfile) | `(0.3.2)` [:whale:](8.1/alpine3.17/pecl_geospatial/Dockerfile) | `(0.3.2)` [:whale:](8.2/bullseye/pecl_geospatial/Dockerfile) | `(0.3.2)` [:whale:](8.2/alpine3.17/pecl_geospatial/Dockerfile)
[`gmp`](https://php.net/gmp) | [:whale:](8.0/bullseye/gmp/Dockerfile) | [:whale:](8.0/alpine3.16/gmp/Dockerfile) | [:whale:](8.1/bullseye/gmp/Dockerfile) | [:whale:](8.1/alpine3.17/gmp/Dockerfile) | [:whale:](8.2/bullseye/gmp/Dockerfile) | [:whale:](8.2/alpine3.17/gmp/Dockerfile)
[`grpc`](https://pecl.php.net/package/grpc) _PECL_ | `(1.52.1)` [:whale:](8.0/bullseye/pecl_grpc/Dockerfile) | `(1.52.1)` [:whale:](8.0/alpine3.16/pecl_grpc/Dockerfile) | `(1.52.1)` [:whale:](8.1/bullseye/pecl_grpc/Dockerfile) | `(1.52.1)` [:whale:](8.1/alpine3.17/pecl_grpc/Dockerfile) | `(1.52.1)` [:whale:](8.2/bullseye/pecl_grpc/Dockerfile) | `(1.52.1)` [:whale:](8.2/alpine3.17/pecl_grpc/Dockerfile)
[`grpc`](https://pecl.php.net/package/grpc) _PECL_ | `(1.53.0)` [:whale:](8.0/bullseye/pecl_grpc/Dockerfile) | `(1.53.0)` [:whale:](8.0/alpine3.16/pecl_grpc/Dockerfile) | `(1.53.0)` [:whale:](8.1/bullseye/pecl_grpc/Dockerfile) | `(1.53.0)` [:whale:](8.1/alpine3.17/pecl_grpc/Dockerfile) | `(1.53.0)` [:whale:](8.2/bullseye/pecl_grpc/Dockerfile) | `(1.53.0)` [:whale:](8.2/alpine3.17/pecl_grpc/Dockerfile)
[`igbinary`](https://pecl.php.net/package/igbinary) _PECL_ | `(3.2.14)` [:whale:](8.0/bullseye/pecl_igbinary/Dockerfile) | `(3.2.14)` [:whale:](8.0/alpine3.16/pecl_igbinary/Dockerfile) | `(3.2.14)` [:whale:](8.1/bullseye/pecl_igbinary/Dockerfile) | `(3.2.14)` [:whale:](8.1/alpine3.17/pecl_igbinary/Dockerfile) | `(3.2.14)` [:whale:](8.2/bullseye/pecl_igbinary/Dockerfile) | `(3.2.14)` [:whale:](8.2/alpine3.17/pecl_igbinary/Dockerfile)
[`imagick`](https://pecl.php.net/package/imagick) _PECL_ | `(3.7.0)` [:whale:](8.0/bullseye/pecl_imagick/Dockerfile) | `(3.7.0)` [:whale:](8.0/alpine3.16/pecl_imagick/Dockerfile) | `(3.7.0)` [:whale:](8.1/bullseye/pecl_imagick/Dockerfile) | `(3.7.0)` [:whale:](8.1/alpine3.17/pecl_imagick/Dockerfile) | `(3.7.0)` [:whale:](8.2/bullseye/pecl_imagick/Dockerfile) | `(3.7.0)` [:whale:](8.2/alpine3.17/pecl_imagick/Dockerfile)
[`imap`](https://php.net/imap) | [:whale:](8.0/bullseye/imap/Dockerfile) | [:whale:](8.0/alpine3.16/imap/Dockerfile) | [:whale:](8.1/bullseye/imap/Dockerfile) | [:whale:](8.1/alpine3.17/imap/Dockerfile) | [:whale:](8.2/bullseye/imap/Dockerfile) | [:whale:](8.2/alpine3.17/imap/Dockerfile)
Expand All @@ -38,7 +38,7 @@ Extension | PHP `8.0` `bullseye` | PHP `8.0` `alpine3.16` | PHP `8.1` `bullseye`
[`memcached`](https://pecl.php.net/package/memcached) _PECL_ | `(3.2.0)` [:whale:](8.0/bullseye/pecl_memcached/Dockerfile) | `(3.2.0)` [:whale:](8.0/alpine3.16/pecl_memcached/Dockerfile) | `(3.2.0)` [:whale:](8.1/bullseye/pecl_memcached/Dockerfile) | `(3.2.0)` [:whale:](8.1/alpine3.17/pecl_memcached/Dockerfile) | `(3.2.0)` [:whale:](8.2/bullseye/pecl_memcached/Dockerfile) | `(3.2.0)` [:whale:](8.2/alpine3.17/pecl_memcached/Dockerfile)
[`mongodb`](https://pecl.php.net/package/mongodb) _PECL_ | `(1.15.1)` [:whale:](8.0/bullseye/pecl_mongodb/Dockerfile) | `(1.15.1)` [:whale:](8.0/alpine3.16/pecl_mongodb/Dockerfile) | `(1.15.1)` [:whale:](8.1/bullseye/pecl_mongodb/Dockerfile) | `(1.15.1)` [:whale:](8.1/alpine3.17/pecl_mongodb/Dockerfile) | `(1.15.1)` [:whale:](8.2/bullseye/pecl_mongodb/Dockerfile) | `(1.15.1)` [:whale:](8.2/alpine3.17/pecl_mongodb/Dockerfile)
[`mysqli`](https://php.net/mysqli) | [:whale:](8.0/bullseye/mysqli/Dockerfile) | [:whale:](8.0/alpine3.16/mysqli/Dockerfile) | [:whale:](8.1/bullseye/mysqli/Dockerfile) | [:whale:](8.1/alpine3.17/mysqli/Dockerfile) | [:whale:](8.2/bullseye/mysqli/Dockerfile) | [:whale:](8.2/alpine3.17/mysqli/Dockerfile)
[`newrelic`](https://docs.newrelic.com/docs/apm/agents/php-agent/) | `(10.6.0.318)` [:whale:](8.0/bullseye/newrelic/Dockerfile) | `(10.6.0.318)` [:whale:](8.0/alpine3.16/newrelic/Dockerfile) | `(10.6.0.318)` [:whale:](8.1/bullseye/newrelic/Dockerfile) | `(10.6.0.318)` [:whale:](8.1/alpine3.17/newrelic/Dockerfile) | :x: | :x:
[`newrelic`](https://docs.newrelic.com/docs/apm/agents/php-agent/) | `(10.9.0.324)` [:whale:](8.0/bullseye/newrelic/Dockerfile) | `(10.9.0.324)` [:whale:](8.0/alpine3.16/newrelic/Dockerfile) | `(10.9.0.324)` [:whale:](8.1/bullseye/newrelic/Dockerfile) | `(10.9.0.324)` [:whale:](8.1/alpine3.17/newrelic/Dockerfile) | `(10.9.0.324)` [:whale:](8.2/bullseye/newrelic/Dockerfile) | `(10.9.0.324)` [:whale:](8.2/alpine3.17/newrelic/Dockerfile)
[`opcache`](https://php.net/opcache) | [:whale:](8.0/bullseye/opcache/Dockerfile) | [:whale:](8.0/alpine3.16/opcache/Dockerfile) | [:whale:](8.1/bullseye/opcache/Dockerfile) | [:whale:](8.1/alpine3.17/opcache/Dockerfile) | [:whale:](8.2/bullseye/opcache/Dockerfile) | [:whale:](8.2/alpine3.17/opcache/Dockerfile)
[`pcntl`](https://php.net/pcntl) | [:whale:](8.0/bullseye/pcntl/Dockerfile) | [:whale:](8.0/alpine3.16/pcntl/Dockerfile) | [:whale:](8.1/bullseye/pcntl/Dockerfile) | [:whale:](8.1/alpine3.17/pcntl/Dockerfile) | [:whale:](8.2/bullseye/pcntl/Dockerfile) | [:whale:](8.2/alpine3.17/pcntl/Dockerfile)
[`pdo_mysql`](https://php.net/pdo_mysql) | [:whale:](8.0/bullseye/pdo_mysql/Dockerfile) | [:whale:](8.0/alpine3.16/pdo_mysql/Dockerfile) | [:whale:](8.1/bullseye/pdo_mysql/Dockerfile) | [:whale:](8.1/alpine3.17/pdo_mysql/Dockerfile) | [:whale:](8.2/bullseye/pdo_mysql/Dockerfile) | [:whale:](8.2/alpine3.17/pdo_mysql/Dockerfile)
Expand All @@ -53,10 +53,10 @@ Extension | PHP `8.0` `bullseye` | PHP `8.0` `alpine3.16` | PHP `8.1` `bullseye`
[`soap`](https://php.net/soap) | [:whale:](8.0/bullseye/soap/Dockerfile) | [:whale:](8.0/alpine3.16/soap/Dockerfile) | [:whale:](8.1/bullseye/soap/Dockerfile) | [:whale:](8.1/alpine3.17/soap/Dockerfile) | [:whale:](8.2/bullseye/soap/Dockerfile) | [:whale:](8.2/alpine3.17/soap/Dockerfile)
[`sockets`](https://php.net/sockets) | [:whale:](8.0/bullseye/sockets/Dockerfile) | [:whale:](8.0/alpine3.16/sockets/Dockerfile) | [:whale:](8.1/bullseye/sockets/Dockerfile) | [:whale:](8.1/alpine3.17/sockets/Dockerfile) | [:whale:](8.2/bullseye/sockets/Dockerfile) | [:whale:](8.2/alpine3.17/sockets/Dockerfile)
[`sqlsrv`](https://pecl.php.net/package/sqlsrv) _PECL_ | `(5.11.0)` [:whale:](8.0/bullseye/pecl_sqlsrv/Dockerfile) | `(5.11.0)` [:whale:](8.0/alpine3.16/pecl_sqlsrv/Dockerfile) | `(5.11.0)` [:whale:](8.1/bullseye/pecl_sqlsrv/Dockerfile) | `(5.11.0)` [:whale:](8.1/alpine3.17/pecl_sqlsrv/Dockerfile) | `(5.11.0)` [:whale:](8.2/bullseye/pecl_sqlsrv/Dockerfile) | `(5.11.0)` [:whale:](8.2/alpine3.17/pecl_sqlsrv/Dockerfile)
[`timezonedb`](https://pecl.php.net/package/timezonedb) _PECL_ | `(2022.7)` [:whale:](8.0/bullseye/pecl_timezonedb/Dockerfile) | `(2022.7)` [:whale:](8.0/alpine3.16/pecl_timezonedb/Dockerfile) | `(2022.7)` [:whale:](8.1/bullseye/pecl_timezonedb/Dockerfile) | `(2022.7)` [:whale:](8.1/alpine3.17/pecl_timezonedb/Dockerfile) | `(2022.7)` [:whale:](8.2/bullseye/pecl_timezonedb/Dockerfile) | `(2022.7)` [:whale:](8.2/alpine3.17/pecl_timezonedb/Dockerfile)
[`timezonedb`](https://pecl.php.net/package/timezonedb) _PECL_ | `(2023.3)` [:whale:](8.0/bullseye/pecl_timezonedb/Dockerfile) | `(2023.3)` [:whale:](8.0/alpine3.16/pecl_timezonedb/Dockerfile) | `(2023.3)` [:whale:](8.1/bullseye/pecl_timezonedb/Dockerfile) | `(2023.3)` [:whale:](8.1/alpine3.17/pecl_timezonedb/Dockerfile) | `(2023.3)` [:whale:](8.2/bullseye/pecl_timezonedb/Dockerfile) | `(2023.3)` [:whale:](8.2/alpine3.17/pecl_timezonedb/Dockerfile)
[`uuid`](https://pecl.php.net/package/uuid) _PECL_ | `(1.2.0)` [:whale:](8.0/bullseye/pecl_uuid/Dockerfile) | `(1.2.0)` [:whale:](8.0/alpine3.16/pecl_uuid/Dockerfile) | `(1.2.0)` [:whale:](8.1/bullseye/pecl_uuid/Dockerfile) | `(1.2.0)` [:whale:](8.1/alpine3.17/pecl_uuid/Dockerfile) | `(1.2.0)` [:whale:](8.2/bullseye/pecl_uuid/Dockerfile) | `(1.2.0)` [:whale:](8.2/alpine3.17/pecl_uuid/Dockerfile)
[`var_representation`](https://pecl.php.net/package/var_representation) _PECL_ | `(0.1.4)` [:whale:](8.0/bullseye/pecl_var_representation/Dockerfile) | `(0.1.4)` [:whale:](8.0/alpine3.16/pecl_var_representation/Dockerfile) | `(0.1.4)` [:whale:](8.1/bullseye/pecl_var_representation/Dockerfile) | `(0.1.4)` [:whale:](8.1/alpine3.17/pecl_var_representation/Dockerfile) | `(0.1.4)` [:whale:](8.2/bullseye/pecl_var_representation/Dockerfile) | `(0.1.4)` [:whale:](8.2/alpine3.17/pecl_var_representation/Dockerfile)
[`xdebug`](https://pecl.php.net/package/xdebug) _PECL_ | `(3.2.0)` [:whale:](8.0/bullseye/pecl_xdebug/Dockerfile) | `(3.2.0)` [:whale:](8.0/alpine3.16/pecl_xdebug/Dockerfile) | `(3.2.0)` [:whale:](8.1/bullseye/pecl_xdebug/Dockerfile) | `(3.2.0)` [:whale:](8.1/alpine3.17/pecl_xdebug/Dockerfile) | `(3.2.0)` [:whale:](8.2/bullseye/pecl_xdebug/Dockerfile) | `(3.2.0)` [:whale:](8.2/alpine3.17/pecl_xdebug/Dockerfile)
[`xdebug`](https://pecl.php.net/package/xdebug) _PECL_ | `(3.2.1)` [:whale:](8.0/bullseye/pecl_xdebug/Dockerfile) | `(3.2.1)` [:whale:](8.0/alpine3.16/pecl_xdebug/Dockerfile) | `(3.2.1)` [:whale:](8.1/bullseye/pecl_xdebug/Dockerfile) | `(3.2.1)` [:whale:](8.1/alpine3.17/pecl_xdebug/Dockerfile) | `(3.2.1)` [:whale:](8.2/bullseye/pecl_xdebug/Dockerfile) | `(3.2.1)` [:whale:](8.2/alpine3.17/pecl_xdebug/Dockerfile)
[`xhprof`](https://pecl.php.net/package/xhprof) _PECL_ | `(2.3.9)` [:whale:](8.0/bullseye/pecl_xhprof/Dockerfile) | `(2.3.9)` [:whale:](8.0/alpine3.16/pecl_xhprof/Dockerfile) | `(2.3.9)` [:whale:](8.1/bullseye/pecl_xhprof/Dockerfile) | `(2.3.9)` [:whale:](8.1/alpine3.17/pecl_xhprof/Dockerfile) | `(2.3.9)` [:whale:](8.2/bullseye/pecl_xhprof/Dockerfile) | `(2.3.9)` [:whale:](8.2/alpine3.17/pecl_xhprof/Dockerfile)
[`yaml`](https://pecl.php.net/package/yaml) _PECL_ | `(2.2.3)` [:whale:](8.0/bullseye/pecl_yaml/Dockerfile) | `(2.2.3)` [:whale:](8.0/alpine3.16/pecl_yaml/Dockerfile) | `(2.2.3)` [:whale:](8.1/bullseye/pecl_yaml/Dockerfile) | `(2.2.3)` [:whale:](8.1/alpine3.17/pecl_yaml/Dockerfile) | `(2.2.3)` [:whale:](8.2/bullseye/pecl_yaml/Dockerfile) | `(2.2.3)` [:whale:](8.2/alpine3.17/pecl_yaml/Dockerfile)
[`zip`](https://pecl.php.net/package/zip) _PECL_ | `(1.21.1)` [:whale:](8.0/bullseye/pecl_zip/Dockerfile) | `(1.21.1)` [:whale:](8.0/alpine3.16/pecl_zip/Dockerfile) | `(1.21.1)` [:whale:](8.1/bullseye/pecl_zip/Dockerfile) | `(1.21.1)` [:whale:](8.1/alpine3.17/pecl_zip/Dockerfile) | `(1.21.1)` [:whale:](8.2/bullseye/pecl_zip/Dockerfile) | `(1.21.1)` [:whale:](8.2/alpine3.17/pecl_zip/Dockerfile)
Expand Down

0 comments on commit 8e0525d

Please sign in to comment.