docker-compose.yaml 325 B

12345678910111213141516
  1. version: "3"
  2. services:
  3. php:
  4. build:
  5. context: .
  6. environment:
  7. - 'PHP_DISPLAY_ERRORS=0'
  8. - 'PHP_LOG_ERRORS=1'
  9. - 'PHP_ERROR_REPORTING=E_ALL'
  10. - 'PHP_REPORT_MEMLEAKS=1'
  11. volumes:
  12. - ./:/app/public/
  13. ports:
  14. - "8001:80"