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.

21 lines
338 B

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