Skip to content

Commit

Permalink
fix: redis 6 quebra redis symfony
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassabreu committed Oct 9, 2024
1 parent a50660b commit 2997776
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ ENV \
XDEBUG_ENABLED=false \
XDEBUG_IDEKEY="docker" \
XDEBUG_VERSION="-3.2.1" \
REDIS_VERSION="-5.3.7"
XDEBUG_REMOTE_PORT=9000 \
PHP_EXTENSION_WDDX=1 \
PHP_OPENSSL=1 \
Expand All @@ -35,7 +36,7 @@ RUN docker-php-ext-configure gd --with-jpeg \
&& docker-php-ext-install -j$(nproc) bcmath gd pdo_mysql calendar exif gettext shmop soap sockets intl pcntl xsl ldap imap

RUN echo "---> Adding Redis" && \
pecl install redis && \
pecl install redis${REDIS_VERSION} && \
docker-php-ext-enable redis

RUN echo "---> Adding xDebug" && \
Expand Down

0 comments on commit 2997776

Please sign in to comment.