Skip to content

Instantly share code, notes, and snippets.

@esenthil2018
Created June 12, 2022 16:32
Show Gist options
  • Save esenthil2018/241d441df6898067483d2cc0d23650c0 to your computer and use it in GitHub Desktop.
Save esenthil2018/241d441df6898067483d2cc0d23650c0 to your computer and use it in GitHub Desktop.
# install SQL Server PHP connector module
RUN pecl install sqlsrv pdo_sqlsrv
# initial configuration of SQL Server PHP connector
RUN echo "extension=/usr/lib/php/20151012/sqlsrv.so" >> /etc/php/7.0/cli/php.ini
RUN echo "extension=/usr/lib/php/20151012/pdo_sqlsrv.so" >> /etc/php/7.0/cli/php.ini
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment