123456789101112131415161718192021222324 |
- # Mark Shust's Magento 2 Docker Compose Override Example (https://github.com/markoshust/magento2-docker)
- #
- # You can use this file to change any of the defaults supplied in docker-compose.yml
- # Copy this file to docker-compose.override.yml. Docker compose will read these changes for you.
- #
- # Example showing how you can enable composer support in this file:
- #
- #version: "3"
- #
- #services:
- # app:
- # volumes: &appvolumes
- # - appdata:/var/www/html
- # - ~/.composer:/var/www/.composer
- # - ./html/app:/var/www/html/app
- #
- # phpfpm:
- # volumes: *appvolumes
- #
- # setup:
- # volumes: *appvolumes
- # environment:
- # - M2SETUP_USE_ARCHIVE=false
- # - M2SETUP_USE_SAMPLE_DATA=false
|