Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Added Redis
Browse files Browse the repository at this point in the history
  • Loading branch information
lcfumes committed May 15, 2018
1 parent 165461e commit 98f481c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1,876 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN set -xe \
php7-pdo_sqlite \
php7-phar \
php7-posix \
php7-redis \
php7-session \
php7-simplexml \
php7-soap \
Expand All @@ -63,13 +64,13 @@ RUN set -xe \
php7-zip \
php7-zlib

RUN pecl install redis
RUN docker-php-ext-install mysqli && \
docker-php-ext-install pdo_mysql && \
docker-php-ext-install mbstring && \
docker-php-ext-install opcache
docker-php-ext-install opcache && \
docker-php-ext-enable redis

RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer

COPY config/php/php.ini /etc/php7/php.ini

EXPOSE 80
Loading

0 comments on commit 98f481c

Please sign in to comment.