Merge pull request #2886 from laradock/php8-swoole

PHP 8.0 php-fpm swoole
This commit is contained in:
Shao Yu-Lung (Allen) 2021-03-16 22:19:03 +08:00 committed by GitHub
commit a80750cc24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -285,24 +285,21 @@ RUN if [ ${INSTALL_PHPREDIS} = true ]; then \
########################################################################### ###########################################################################
ARG INSTALL_SWOOLE=false ARG INSTALL_SWOOLE=false
RUN if [ ${INSTALL_SWOOLE} = true ]; then \ RUN set -eux; \
# Install Php Swoole Extension if [ ${INSTALL_SWOOLE} = true ]; then \
if [ $(php -r "echo PHP_MAJOR_VERSION;") = "5" ]; then \ # Install Php Swoole Extension
pecl -q install swoole-2.0.11; \ if [ $(php -r "echo PHP_VERSION_ID - PHP_RELEASE_VERSION;") = "50600" ]; then \
else \ pecl install swoole-2.0.11; \
if [ $(php -r "echo PHP_MINOR_VERSION;") = "0" ]; then \ elif [ $(php -r "echo PHP_VERSION_ID - PHP_RELEASE_VERSION;") = "70000" ]; then \
echo '' | pecl install swoole-4.3.5; \ pecl install swoole-4.3.5; \
elif [ $(php -r "echo PHP_VERSION_ID - PHP_RELEASE_VERSION;") = "70100" ]; then \
pecl install swoole-4.6.0; \
else \ else \
if [ $(php -r "echo PHP_MINOR_VERSION;") = "1" ]; then \ pecl install swoole; \
echo '' | pecl install swoole-4.6.0; \ fi; \
else \ docker-php-ext-enable swoole; \
echo '' | pecl install swoole; \ php -m | grep -q 'swoole'; \
fi \ fi
fi \
fi && \
docker-php-ext-enable swoole \
&& php -m | grep -q 'swoole' \
;fi
########################################################################### ###########################################################################
# Taint EXTENSION # Taint EXTENSION