Dockerized php7.2-apache with ODBC support, build according to : https://www.microsoft.com/en-us/sql-server/developer-get-started/php/ubuntu/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

22 lignes
412 B

il y a 5 ans
il y a 5 ans
  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