Skip to content

Commit

Permalink
Add APCu pecl extension. Fixes #75 (#84)
Browse files Browse the repository at this point in the history
Add APCu pecl extension. Fixes #75. Closes #79
  • Loading branch information
lmakarov authored Sep 20, 2018
1 parent a4a556b commit a7d45db
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 5.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ RUN set -xe; \
;\
pecl update-channels; \
pecl install >/dev/null </dev/null \
# apcu-4.0.11 is the last version with php5 support
apcu-4.0.11 \
gnupg \
imagick \
memcache \
Expand All @@ -202,6 +204,7 @@ RUN set -xe; \
xdebug-2.5.5 \
;\
docker-php-ext-enable \
apcu \
gnupg \
imagick \
memcache \
Expand Down
2 changes: 2 additions & 0 deletions 5.6/php-modules.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[PHP Modules]
apc
apcu
bcmath
blackfire
bz2
Expand Down
2 changes: 2 additions & 0 deletions 7.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ RUN set -xe; \
;\
pecl update-channels; \
pecl install >/dev/null </dev/null \
apcu \
gnupg \
imagick \
# Use memcached (not memcache) for PHP 7.x
Expand All @@ -209,6 +210,7 @@ RUN set -xe; \
xdebug \
;\
docker-php-ext-enable \
apcu \
gnupg \
imagick \
memcached \
Expand Down
1 change: 1 addition & 0 deletions 7.0/php-modules.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[PHP Modules]
apcu
bcmath
blackfire
bz2
Expand Down
2 changes: 2 additions & 0 deletions 7.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ RUN set -xe; \
;\
pecl update-channels; \
pecl install >/dev/null </dev/null \
apcu \
gnupg \
imagick \
# Use memcached (not memcache) for PHP 7.x
Expand All @@ -209,6 +210,7 @@ RUN set -xe; \
xdebug \
;\
docker-php-ext-enable \
apcu \
gnupg \
imagick \
memcached \
Expand Down
1 change: 1 addition & 0 deletions 7.1/php-modules.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[PHP Modules]
apcu
bcmath
blackfire
bz2
Expand Down
2 changes: 2 additions & 0 deletions 7.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ RUN set -xe; \
;\
pecl update-channels; \
pecl install >/dev/null </dev/null \
apcu \
gnupg \
imagick \
# Use memcached (not memcache) for PHP 7.x
Expand All @@ -211,6 +212,7 @@ RUN set -xe; \
sqlsrv \
;\
docker-php-ext-enable \
apcu \
gnupg \
imagick \
memcached \
Expand Down
1 change: 1 addition & 0 deletions 7.2/php-modules.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[PHP Modules]
apcu
bcmath
blackfire
bz2
Expand Down

0 comments on commit a7d45db

Please sign in to comment.