Skip to content

Instantly share code, notes, and snippets.

@ivankristianto
Created June 19, 2016 08:58
Show Gist options
  • Save ivankristianto/3299b6c552d5caabb097c233bbf29b22 to your computer and use it in GitHub Desktop.
Save ivankristianto/3299b6c552d5caabb097c233bbf29b22 to your computer and use it in GitHub Desktop.
Install Redis on php5 docker
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