Created
June 19, 2016 08:58
-
-
Save ivankristianto/3299b6c552d5caabb097c233bbf29b22 to your computer and use it in GitHub Desktop.
Install Redis on php5 docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RUN curl -L -o /tmp/redis.tar.gz https://github.com/phpredis/phpredis/archive/2.2.7.tar.gz \ | |
&& tar xfz /tmp/redis.tar.gz \ | |
&& rm -r /tmp/redis.tar.gz \ | |
&& mv phpredis-2.2.7 /usr/src/php/ext/redis \ | |
&& docker-php-ext-install redis |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment