PHPのオフィシャルDockerイメージにredis exensionを追加する方法(debian版)
※ こちらの記事を大変参考にさせていただきました。
PHPのオフィシャルDockerイメージにredis exensionを追加する方法 - Qiita
「公式イメージ」にdebianベースのものを用いた場合の、「こうやったらphpredis入ったよ」という記事です。
どこかでまた使うことがありそうなので、備忘録としてメモ。
FROM php:7.0-apache
RUN apt-get update && apt-get install -y --no-install-recommends libicu-dev git
WORKDIR /usr/src/php/ext
RUN git clone -b php7 --depth 1 https://github.com/Connehito/phpredis.git redis
RUN docker-php-ext-install redis
Author And Source
この問題について(PHPのオフィシャルDockerイメージにredis exensionを追加する方法(debian版)), 我々は、より多くの情報をここで見つけました https://qiita.com/o0h/items/c79077cf96c6e8f27742著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .