replace redis with apcu

This commit is contained in:
bsod 2019-09-30 22:47:58 +02:00
parent 2718a8f1bf
commit fd6c4b59b7
2 changed files with 3 additions and 9 deletions

View File

@ -21,11 +21,6 @@ services:
networks:
- internal
redis:
image: redis
networks:
- internal
networks:
web:
external:

View File

@ -58,14 +58,13 @@ RUN \
curl \
bz2 \
intl \
opcache \
mcrypt && \
opcache && \
CFLAGS="-I/usr/src/php" docker-php-ext-install xmlreader
RUN \
pecl install -o -f redis imagick-beta && \
pecl install -o -f apcu imagick-beta && \
rm -rf /tmp/pear && \
docker-php-ext-enable redis imagick
docker-php-ext-enable apcu imagick
# Activate user-defined .htaccess
RUN \