Skip to content

Commit a9a38fc

Browse files
committed
Added "php-redis" extension
* Updated README
1 parent 703fe70 commit a9a38fc

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# jsunier/php-symfony-test
22

3-
Docker image to run PHPUnit with Symfony 3.x/4.x on PHP `7.1`/`7.2`/`7.3`/`7.4`.
3+
Docker image to run PHPUnit with Symfony 3.x/4.x/5.x on PHP `7.1`/`7.2`/`7.3`/`7.4`.
44

55
Docker container allowing you to build and test your PHP projects.
66

@@ -52,7 +52,7 @@ List of PHP extensions installed:
5252
| `soap` |||||
5353
| `mcrypt` |||||
5454
| `oci8` |||||
55-
| `redis` | | | | |
55+
| `redis` | | | | |
5656

5757
# Default configurations
5858

php7.1/mysql/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1212
docker-php-ext-install mbstring pdo pdo_mysql zip iconv opcache bcmath sockets soap && \
1313
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1414
docker-php-ext-install gd && \
15-
pecl install imagick xdebug-2.6.1 && \
16-
docker-php-ext-enable imagick xdebug && \
15+
pecl install imagick xdebug-2.6.1 redis && \
16+
docker-php-ext-enable imagick xdebug redis && \
1717
apt-get clean
1818

1919
COPY php.ini $PHP_INI_DIR/php.ini

php7.1/postgresql/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1313
docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql && \
1414
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1515
docker-php-ext-install pdo pdo_pgsql pgsql gd && \
16-
pecl install imagick xdebug-2.6.1 && \
17-
docker-php-ext-enable imagick xdebug && \
16+
pecl install imagick xdebug-2.6.1 redis && \
17+
docker-php-ext-enable imagick xdebug redis && \
1818
apt-get clean
1919

2020
COPY php.ini $PHP_INI_DIR/php.ini

php7.2/mysql/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1212
docker-php-ext-install mbstring pdo pdo_mysql zip iconv opcache bcmath sockets soap && \
1313
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1414
docker-php-ext-install gd && \
15-
pecl install imagick xdebug-2.6.1 && \
16-
docker-php-ext-enable imagick xdebug && \
15+
pecl install imagick xdebug-2.6.1 redis && \
16+
docker-php-ext-enable imagick xdebug redis && \
1717
apt-get clean
1818

1919
COPY php.ini $PHP_INI_DIR/php.ini

php7.2/postgresql/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1313
docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql && \
1414
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1515
docker-php-ext-install pdo pdo_pgsql pgsql gd && \
16-
pecl install imagick xdebug-2.6.1 && \
17-
docker-php-ext-enable imagick xdebug && \
16+
pecl install imagick xdebug-2.6.1 redis && \
17+
docker-php-ext-enable imagick xdebug redis && \
1818
apt-get clean
1919

2020
COPY php.ini $PHP_INI_DIR/php.ini

php7.3/mysql/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1212
docker-php-ext-install mbstring pdo pdo_mysql zip iconv opcache bcmath sockets soap && \
1313
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1414
docker-php-ext-install gd && \
15-
pecl install imagick xdebug-2.7.1 && \
16-
docker-php-ext-enable imagick xdebug && \
15+
pecl install imagick xdebug-2.7.1 redis && \
16+
docker-php-ext-enable imagick xdebug redis && \
1717
apt-get clean
1818

1919
COPY php.ini $PHP_INI_DIR/php.ini

php7.3/postgresql/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1313
docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql && \
1414
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1515
docker-php-ext-install pdo pdo_pgsql pgsql gd && \
16-
pecl install imagick xdebug-2.7.1 && \
17-
docker-php-ext-enable imagick xdebug && \
16+
pecl install imagick xdebug-2.7.1 redis && \
17+
docker-php-ext-enable imagick xdebug redis && \
1818
apt-get clean
1919

2020
COPY php.ini $PHP_INI_DIR/php.ini

php7.4/mysql/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1212
docker-php-ext-install pdo pdo_mysql zip iconv opcache bcmath sockets soap && \
1313
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp && \
1414
docker-php-ext-install gd && \
15-
pecl install imagick xdebug-2.9.0 && \
16-
docker-php-ext-enable imagick xdebug && \
15+
pecl install imagick xdebug-2.9.0 redis && \
16+
docker-php-ext-enable imagick xdebug redis && \
1717
apt-get clean
1818

1919
COPY php.ini $PHP_INI_DIR/php.ini

php7.4/postgresql/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1313
docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql && \
1414
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp && \
1515
docker-php-ext-install pdo pdo_pgsql pgsql gd && \
16-
pecl install imagick xdebug-2.9.0 && \
17-
docker-php-ext-enable imagick xdebug && \
16+
pecl install imagick xdebug-2.9.0 redis && \
17+
docker-php-ext-enable imagick xdebug redis && \
1818
apt-get clean
1919

2020
COPY php.ini $PHP_INI_DIR/php.ini

0 commit comments

Comments
 (0)