* automatic install redis in pecl

* correct for dot style version notation of php images tagged and pushed into docker hub
This commit is contained in:
2025-01-15 11:17:10 +03:00
parent 1ea5e96fcb
commit 21140eab2d
3 changed files with 19 additions and 6 deletions

View File

@ -72,7 +72,7 @@ RUN PHP_MAJOR_VERSION=$(php -r 'echo PHP_MAJOR_VERSION;') && \
# Redis:
###########################################################################
RUN pecl install -a redis && \
RUN echo '' | pecl install redis && \
docker-php-ext-enable redis
###########################################################################

View File

@ -49,7 +49,7 @@ RUN PHP_MAJOR_VERSION=$(php -r 'echo PHP_MAJOR_VERSION;') && \
# Redis:
###########################################################################
RUN pecl install -a redis && \
RUN echo '' | pecl install redis && \
echo "extension=redis.so" > /etc/php/${PHP_VERSION}/cli/conf.d/20-redis.ini
###########################################################################