add Memcached support to the readme file
This commit is contained in:
@ -1,11 +1,13 @@
|
||||
FROM php:7.0-fpm
|
||||
# You can change the PHP version from here. After changing the PHP version, check the Memcached section below because it replies on PHP 7.
|
||||
FROM php:7.0-fpm
|
||||
|
||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
||||
|
||||
ADD ./laravel.ini /usr/local/etc/php/conf.d
|
||||
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
|
||||
|
||||
RUN apt-get update && apt-get install libpq-dev -y \
|
||||
RUN apt-get update && apt-get install \
|
||||
libpq-dev -y \
|
||||
curl \
|
||||
libmemcached-dev
|
||||
|
||||
@ -14,7 +16,7 @@ RUN docker-php-ext-install \
|
||||
pdo_mysql \
|
||||
pdo_pgsql
|
||||
|
||||
#Installing memcached for php 7 is a bit trickier
|
||||
# Install Memcached for php 7
|
||||
RUN curl -L -o /tmp/memcached.tar.gz "https://github.com/php-memcached-dev/php-memcached/archive/php7.tar.gz" \
|
||||
&& mkdir -p /usr/src/php/ext/memcached \
|
||||
&& tar -C /usr/src/php/ext/memcached -zxvf /tmp/memcached.tar.gz --strip 1 \
|
||||
|
Reference in New Issue
Block a user