.dockerignore 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Docker-ignore
  2. .dev
  3. .git
  4. .github
  5. .gitattributes
  6. .gitignore
  7. tests
  8. # Docker related resources are not needed inside the container
  9. .dockerignore
  10. Dockerfile
  11. Dockerfile.armhf
  12. # Docker Compose resources
  13. docker-compose.yml
  14. # Shaarli runtime resources
  15. cache/*
  16. data/*
  17. pagecache/*
  18. tmp/*
  19. # Shaarli's docs are created during the build
  20. doc/html/
  21. # Eclipse project files
  22. .settings
  23. .buildpath
  24. .project
  25. # Raintpl generated pages
  26. *.rtpl.php
  27. # 3rd-party dependencies
  28. vendor/
  29. # Release archives
  30. *.tar.gz
  31. *.zip
  32. inc/languages/*/LC_MESSAGES/shaarli.mo
  33. # Development and test resources
  34. coverage
  35. doxygen
  36. sandbox
  37. phpmd.html
  38. # User plugin configuration
  39. plugins/*/config.php
  40. # 3rd party themes
  41. tpl/*
  42. !tpl/default
  43. !tpl/vintage
  44. # Front end
  45. node_modules
  46. tpl/default/js
  47. tpl/default/css
  48. tpl/default/fonts
  49. tpl/default/img
  50. tpl/vintage/js
  51. tpl/vintage/css
  52. tpl/vintage/img