How to install php-redis extension using the official PHP Docker image approach?

前端 未结 11 1039
Happy的楠姐
Happy的楠姐 2021-01-30 02:21

I want to build my PHP-FPM image with php-redis extension based on the official PHP Docker image, for example, using this Dockerfile: php:5.6-fpm.

The docs

11条回答
  •  星月不相逢
    2021-01-30 02:47

    Redis is not an extension that is included in “php-src”, therefore you cannot use docker-php-ext-install. Use PECL:

    RUN pecl install -o -f redis \
    &&  rm -rf /tmp/pear \
    &&  docker-php-ext-enable redis
    

提交回复
热议问题