compose.dev.yaml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. services:
  2. app:
  3. volumes: &appvolumes
  4. ## Host mounts with performance penalty, only put what is necessary here
  5. - ./src/app/code:/var/www/html/app/code:cached
  6. - ./src/app/design:/var/www/html/app/design:cached
  7. - ./src/app/etc:/var/www/html/app/etc:cached
  8. - ./src/composer.json:/var/www/html/composer.json:cached
  9. - ./src/composer.lock:/var/www/html/composer.lock:cached
  10. - ./src/grunt-config.json.sample:/var/www/html/grunt-config.json:cached
  11. - ./src/Gruntfile.js.sample:/var/www/html/Gruntfile.js:cached
  12. - ./src/dev/tools/grunt/configs:/var/www/html/dev/tools/grunt/configs:cached
  13. - ./src/nginx.conf.sample:/var/www/html/nginx.conf:cached
  14. - ./src/package.json.sample:/var/www/html/package.json:cached
  15. #- ./src/auth.json:/var/www/html/auth.json:cached
  16. #- ./src/m2-hotfixes:/var/www/html/m2-hotfixes:cached
  17. #- ./src/patches:/var/www/html/patches:cached
  18. #- ./src/var/log:/var/www/html/var/log:cached
  19. #- ./src/var/report:/var/www/html/var/report:cached
  20. phpfpm:
  21. volumes: *appvolumes
  22. phpmyadmin:
  23. image: linuxserver/phpmyadmin
  24. env_file: env/db.env
  25. ports:
  26. - "8080:80"
  27. depends_on:
  28. - db