Dockerized php7.2-apache with ODBC support, build according to : https://www.microsoft.com/en-us/sql-server/developer-get-started/php/ubuntu/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

22 lines
412 B

version: '2'
services:
web:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./www:/var/www
- ./apache-laravel.conf:/etc/apache2/sites-enabled/000-default.conf
ports:
- "8888:80"
links:
- mssql
restart: always
mssql:
image: "microsoft/mssql-server-linux"
environment:
- SA_PASSWORD=mssql123
- ACCEPT_EULA=Y
restart: always