瀏覽代碼

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

Tianon Gravi 9 年之前
父節點
當前提交
001a2e7370
共有 1 個文件被更改,包括 7 次插入0 次删除
  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 \