We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50660b commit 4dd0758Copy full SHA for 4dd0758
Dockerfile
@@ -16,6 +16,7 @@ ENV \
16
XDEBUG_ENABLED=false \
17
XDEBUG_IDEKEY="docker" \
18
XDEBUG_VERSION="-3.2.1" \
19
+ REDIS_VERSION="-5.3.7" \
20
XDEBUG_REMOTE_PORT=9000 \
21
PHP_EXTENSION_WDDX=1 \
22
PHP_OPENSSL=1 \
@@ -35,7 +36,7 @@ RUN docker-php-ext-configure gd --with-jpeg \
35
36
&& docker-php-ext-install -j$(nproc) bcmath gd pdo_mysql calendar exif gettext shmop soap sockets intl pcntl xsl ldap imap
37
38
RUN echo "---> Adding Redis" && \
- pecl install redis && \
39
+ pecl install redis${REDIS_VERSION} && \
40
docker-php-ext-enable redis
41
42
RUN echo "---> Adding xDebug" && \
0 commit comments