Fix sqlsrv install for PHP 7.1

This commit is contained in:
cytopia
2020-02-04 19:13:13 +01:00
parent a4102e3d7f
commit 1225d564a7
3 changed files with 8 additions and 2 deletions

View File

@@ -577,10 +577,10 @@ RUN set -eux \
# -------------------- Installing PHP Extension: sqlsrv --------------------
RUN set -eux \
# Installation: Generic
# Installation: Version specific
# Type: PECL extension
# Default: Pecl command
&& pecl install sqlsrv \
&& pecl install sqlsrv-5.6.1 \
# Enabling
&& docker-php-ext-enable sqlsrv \
&& true