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

前端 未结 11 1207
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 03:00

    My opinion, the easiest way is:

    RUN pecl install redis && docker-php-ext-enable redis

    ;)

提交回复
热议问题