2
0

docker-compose.dev.yml 1.1 KB

123456789101112131415161718192021222324
  1. version: "3"
  2. services:
  3. app:
  4. volumes: &appvolumes
  5. ## Host mounts with performance penalty, only put what is necessary here
  6. - ./src/app/code:/var/www/html/app/code:cached
  7. - ./src/app/design:/var/www/html/app/design:cached
  8. - ./src/app/etc:/var/www/html/app/etc:cached
  9. - ./src/composer.json:/var/www/html/composer.json:cached
  10. - ./src/composer.lock:/var/www/html/composer.lock:cached
  11. - ./src/grunt-config.json.sample:/var/www/html/grunt-config.json:cached
  12. - ./src/Gruntfile.js.sample:/var/www/html/Gruntfile.js:cached
  13. - ./src/dev/tools/grunt/configs:/var/www/html/dev/tools/grunt/configs:cached
  14. - ./src/nginx.conf.sample:/var/www/html/nginx.conf:cached
  15. - ./src/package.json.sample:/var/www/html/package.json:cached
  16. #- ./src/auth.json:/var/www/html/auth.json:cached
  17. #- ./src/m2-hotfixes:/var/www/html/m2-hotfixes:cached
  18. #- ./src/patches:/var/www/html/patches:cached
  19. #- ./src/var/log:/var/www/html/var/log:cached
  20. #- ./src/var/report:/var/www/html/var/report:cached
  21. phpfpm:
  22. volumes: *appvolumes