We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95dbea6 commit 9041cd1Copy full SHA for 9041cd1
php.dockerfile
@@ -11,3 +11,8 @@ RUN chown laravel:laravel /var/www/html
11
WORKDIR /var/www/html
12
13
RUN docker-php-ext-install pdo pdo_mysql
14
+
15
+RUN mkdir -p /usr/src/php/ext/redis \
16
+ && curl -L https://github.com/phpredis/phpredis/archive/5.3.4.tar.gz | tar xvz -C /usr/src/php/ext/redis --strip 1 \
17
+ && echo 'redis' >> /usr/src/php-available-exts \
18
+ && docker-php-ext-install redis
0 commit comments