Add an example of installing "redis" and "xdebug" from PECL (PHP 7.1 compatible)

This commit is contained in:
Tianon Gravi 2016-12-19 14:14:39 -08:00
parent c43d31002e
commit 001a2e7370
1 changed files with 7 additions and 0 deletions

View File

@ -99,6 +99,13 @@ Remember, you must install dependencies for your extensions manually. If an exte
Some extensions are not provided with the PHP source, but are instead available through [PECL](https://pecl.php.net/). To install a PECL extension, use `pecl install` to download and compile it, then use `docker-php-ext-enable` to enable it:
```dockerfile
FROM php:7.1-fpm
RUN pecl install redis-3.1.0 \
&& pecl install xdebug-2.5.0 \
&& docker-php-ext-enable redis xdebug
```
```dockerfile
FROM php:5.6-fpm
RUN apt-get update && apt-get install -y libmemcached-dev zlib1g-dev \