docker-compose.override.yml.dist 697 B

1234567891011121314151617181920212223
  1. # Mage Inferno Docker Compose Override Example (https://github.com/mageinferno/magento2-docker-compose)
  2. #
  3. # You can use this file to change any of the defaults supplied in docker-compose.yml
  4. # Copy this file to docker-compose.override.yml. Docker compose will read these changes for you.
  5. #
  6. # Example showing how you can enable composer support in this file:
  7. #
  8. #version: "3"
  9. #
  10. #services:
  11. # app:
  12. # volumes: &appvolumes
  13. # - appdata:/var/www/html
  14. # - ~/.composer:/var/www/.composer
  15. # - ./html/app/code:/var/www/html/app/code
  16. # - ./html/app/design:/var/www/html/app/design
  17. #
  18. # phpfpm:
  19. # volumes: *appvolumes
  20. #
  21. # setup:
  22. # environment:
  23. # - M2SETUP_USE_ARCHIVE=false