replace redis with apcu
This commit is contained in:
parent
2718a8f1bf
commit
fd6c4b59b7
2 changed files with 3 additions and 9 deletions
|
@ -21,11 +21,6 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- internal
|
- internal
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
networks:
|
|
||||||
- internal
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
web:
|
web:
|
||||||
external:
|
external:
|
||||||
|
|
|
@ -58,14 +58,13 @@ RUN \
|
||||||
curl \
|
curl \
|
||||||
bz2 \
|
bz2 \
|
||||||
intl \
|
intl \
|
||||||
opcache \
|
opcache && \
|
||||||
mcrypt && \
|
|
||||||
CFLAGS="-I/usr/src/php" docker-php-ext-install xmlreader
|
CFLAGS="-I/usr/src/php" docker-php-ext-install xmlreader
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
pecl install -o -f redis imagick-beta && \
|
pecl install -o -f apcu imagick-beta && \
|
||||||
rm -rf /tmp/pear && \
|
rm -rf /tmp/pear && \
|
||||||
docker-php-ext-enable redis imagick
|
docker-php-ext-enable apcu imagick
|
||||||
|
|
||||||
# Activate user-defined .htaccess
|
# Activate user-defined .htaccess
|
||||||
RUN \
|
RUN \
|
||||||
|
|
Loading…
Reference in a new issue