.dockerignore 660 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Docker-ignore
  2. .dev
  3. .git
  4. .github
  5. tests
  6. # Docker Compose resources
  7. docker-compose.yml
  8. # Shaarli runtime resources
  9. cache/*
  10. data/*
  11. pagecache/*
  12. tmp/*
  13. # Eclipse project files
  14. .settings
  15. .buildpath
  16. .project
  17. # Raintpl generated pages
  18. *.rtpl.php
  19. # 3rd-party dependencies
  20. vendor/
  21. # Release archives
  22. *.tar.gz
  23. *.zip
  24. inc/languages/*/LC_MESSAGES/shaarli.mo
  25. # Development and test resources
  26. coverage
  27. doxygen
  28. sandbox
  29. phpmd.html
  30. # User plugin configuration
  31. plugins/*/config.php
  32. # 3rd party themes
  33. tpl/*
  34. !tpl/default
  35. !tpl/vintage
  36. # Front end
  37. node_modules
  38. tpl/default/js
  39. tpl/default/css
  40. tpl/default/fonts
  41. tpl/default/img
  42. tpl/vintage/js
  43. tpl/vintage/css
  44. tpl/vintage/img