2
0

compose.dev.yaml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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
  23. phpmyadmin:
  24. image: phpmyadmin/phpmyadmin
  25. env_file: env/db.env
  26. ports:
  27. - "8080:80"
  28. depends_on:
  29. - db