.dockerignore 607 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ## Ignore all
  2. *
  3. ## Expect
  4. !/app
  5. !/src
  6. !/bootstrap
  7. !/config
  8. !/database
  9. !/public
  10. !/resources
  11. !/routes
  12. !/tests
  13. !/lang
  14. !/storage/app
  15. !/storage/framework/cache
  16. !/storage/framework/sessions
  17. !/storage/framework/testing
  18. !/storage/framework/views
  19. !/storage/logs
  20. !artisan
  21. !composer.json
  22. !composer.lock
  23. !package.json
  24. !package-lock.json
  25. !.rr.yaml
  26. !.rr.local.yaml
  27. !.docker/php/*
  28. !.docker/php
  29. !.docker/php/wait-for-it.sh
  30. !.docker/nginx/conf.d/*
  31. !.docker/octane/*
  32. !Caddyfile
  33. !vite.config.js
  34. # Ignore unnecessary files inside allowed directories
  35. # This should go after the allowed directories
  36. **/*~
  37. **/*.log
  38. **/Thumbs.db