docker-compose.override.yml.dist 700 B

123456789101112131415161718192021222324
  1. # Mark Shust's Magento 2 Docker Compose Override Example (https://github.com/markoshust/magento2-docker)
  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:/var/www/html/app
  16. #
  17. # phpfpm:
  18. # volumes: *appvolumes
  19. #
  20. # setup:
  21. # volumes: *appvolumes
  22. # environment:
  23. # - M2SETUP_USE_ARCHIVE=false
  24. # - M2SETUP_USE_SAMPLE_DATA=false