Dockerized php7.2-apache with ODBC support, build according to : https://www.microsoft.com/en-us/sql-server/developer-get-started/php/ubuntu/
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 

22 行
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