Cara menggunakan docker php 7.4 sqlsrv

I started a project recently that required that I connect a Microsoft SQL Server database with a Laravel 5.5 application, so I thought I’d document how I install the pdo_sqlsrv module and install the Microsoft drivers for PHP in Docker.

Once you install the driver, you can easily configure Laravel to use a Microsoft SQL Server connection:

1DB_CONNECTION=sqlsrv

I use Docker with most of my PHP projects—I am releasing a book on using Docker with PHP next week—so I thought I’d show you the recipe for getting a SQL server connection with the PDO driver.

Here’s the Dockerfile needed to install the perquisites and pdo_sqlsrv PECL module:

1FROM php:7.1-apache

2

3ENV ACCEPT_EULA=Y

4

5# Microsoft SQL Server Prerequisites

6RUN apt-get update \

7 && curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \

8 && curl https://packages.microsoft.com/config/debian/9/prod.list \

9 > /etc/apt/sources.list.d/mssql-release.list \

10 && apt-get install -y --no-install-recommends \

11 locales \

12 apt-transport-https \

13 && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \

14 && locale-gen \

15 && apt-get update \

16 && apt-get -y --no-install-recommends install \

17 unixodbc-dev \

18 msodbcsql17

19

20RUN docker-php-ext-install mbstring pdo pdo_mysql \

21 && pecl install sqlsrv pdo_sqlsrv xdebug \

22 && docker-php-ext-enable sqlsrv pdo_sqlsrv xdebug

23

24COPY index.php /var/www/html/

I was having difficulties installing the necessary packages with Debian Stretch and PHP 7.2, so I am using the official PHP 7.1 Docker image as the base image that I extend from at the time of writing.

I am demonstrating the apache version so it’s easy to serve up an index.php file to verify the installation. In most of my projects I am using Caddy or Nginx as the web server, but Apache is an excellent choice too!

The first RUN instruction installs the packages necessary for installing the msodbcsql17 and unixodbc-dev packages successfully:

1# Microsoft SQL Server Prerequisites

2RUN apt-get update \

3 && curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \

4 && curl https://packages.microsoft.com/config/debian/9/prod.list \

5 > /etc/apt/sources.list.d/mssql-release.list \

6 && apt-get install -y --no-install-recommends \

7 locales \

8 apt-transport-https \

9 && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \

10 && locale-gen \

11 && apt-get update \

12 && apt-get -y --no-install-recommends install \

13 unixodbc-dev \

14 msodbcsql17

These packages are needed to install the PECL module for SQL Server’s PDO driver. You can find installation instructions for various platforms in the Microsoft/msphpsql GitHub project readme.

It’s also important to note that we set the ACCEPT_EULA environment variable to Y which is needed when running apt-get install msodbcsql. It signifies that you’ve accepted the End-user license agreement when installing the package.

The next RUN instruction installs PHP extensions using the official PHP image’s docker-php-ext-install script. In this case, I am installing a Laravel prerequisite mbstring along with pdo, and pdo_mysql:

1RUN apt-get update \

2 && apt-get -y --no-install-recommends install \

3 libxml2-dev \

4 && docker-php-ext-install mbstring pdo pdo_mysql soap \

5 && pecl install sqlsrv pdo_sqlsrv xdebug \

6 && docker-php-ext-enable sqlsrv pdo_sqlsrv xdebug

Finally, the most important part of this RUN instruction, we are using pecl to install the sqlsrv and pdo_sqlsrv modules, and then using docker-php-ext-enable to enable them. I am also installing Xdebug because I typically install this in most images for development.

Building and Running The Container

The final instruction in the Dockerfile is the COPY instruction that is copying a simple index.php file that we will create now from the command line:

1$ echo "<?php phpinfo();" > index.php

When we build the image, the Dockerfile will copy the index.php file in the location that Apache will look for it, and we can verify that the SQL Server drivers were installed and working with PHP.

You can build the image with the docker build command to try it out real quick:

1$ docker build --pull -t sqlserver-demo .

The image will take a few minutes depending on your connection speed. Once the build finishes, you can run it from the command line:

1$ docker run --rm -p 8080:80 sqlserver-demo

The docker run command runs the container, and with the help of the -p 8080:80 flag, we have mapped 8080 to the container which is listening on port 80. The --rm flag will remove the container once it exits.

After the container is running you should see some Apache logs in the console, and you can visit http://localhost:8080 in the browser to verify that the SQL Server module is enabled:

Cara menggunakan docker php 7.4 sqlsrv

You should now be able to connect to a SQL Server database in your PHP 7.1 application! I’ve kept the example simple to just focus on the steps necessary to install the SQL Server PDO drivers, but I hope you can see how Docker can help ease the hassle of connecting to a Microsoft SQL database from your PHP applications.


Want to learn more about using Docker with PHP? I wrote a book, Docker for PHP Developers that is now available for sale. You can pick from one of two packages:

  • The Book Only – (use offer code “laravel-news”)
  • The Starter Bundle (use offer code “laravel-news”)
  • The Complete Video Bundle (use offer code “laravelnews”)

The links included are affiliate links which means if you decide to buy Laravel News gets a little kickback to help run this site.