Browse Source

Merge pull request #777 from infosiftr/redis-xdebug

Add an example of installing "redis" and "xdebug" from PECL (PHP 7.1 compatible)
yosifkit 9 years ago
parent
commit
55d799868c
1 changed files with 7 additions and 0 deletions
  1. 7 0
      php/content.md

+ 7 - 0
php/content.md

@@ -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 \