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

5 years ago
5 years ago
  1. version: '2'
  2. services:
  3. web:
  4. build:
  5. context: .
  6. dockerfile: Dockerfile
  7. volumes:
  8. - ./www:/var/www
  9. - ./apache-laravel.conf:/etc/apache2/sites-enabled/000-default.conf
  10. ports:
  11. - "8888:80"
  12. links:
  13. - mssql
  14. restart: always
  15. mssql:
  16. image: "microsoft/mssql-server-linux"
  17. environment:
  18. - SA_PASSWORD=mssql123
  19. - ACCEPT_EULA=Y
  20. restart: always