Skip to content

Commit 4dd0758

Browse files
committed
fix: redis 6 quebra redis symfony
1 parent a50660b commit 4dd0758

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ ENV \
1616
XDEBUG_ENABLED=false \
1717
XDEBUG_IDEKEY="docker" \
1818
XDEBUG_VERSION="-3.2.1" \
19+
REDIS_VERSION="-5.3.7" \
1920
XDEBUG_REMOTE_PORT=9000 \
2021
PHP_EXTENSION_WDDX=1 \
2122
PHP_OPENSSL=1 \
@@ -35,7 +36,7 @@ RUN docker-php-ext-configure gd --with-jpeg \
3536
&& docker-php-ext-install -j$(nproc) bcmath gd pdo_mysql calendar exif gettext shmop soap sockets intl pcntl xsl ldap imap
3637

3738
RUN echo "---> Adding Redis" && \
38-
pecl install redis && \
39+
pecl install redis${REDIS_VERSION} && \
3940
docker-php-ext-enable redis
4041

4142
RUN echo "---> Adding xDebug" && \

0 commit comments

Comments
 (0)