ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
779 B

  1. # See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files.
  2. # Ignore git directory.
  3. /.git/
  4. /.gitignore
  5. # Ignore bundler config.
  6. /.bundle
  7. # Ignore all environment files.
  8. /.env*
  9. # Ignore all default key files.
  10. /config/master.key
  11. /config/credentials/*.key
  12. # Ignore all logfiles and tempfiles.
  13. /log/*
  14. /tmp/*
  15. !/log/.keep
  16. !/tmp/.keep
  17. # Ignore pidfiles, but keep the directory.
  18. /tmp/pids/*
  19. !/tmp/pids/.keep
  20. # Ignore storage (uploaded files in development and any SQLite databases).
  21. /storage/*
  22. !/storage/.keep
  23. /tmp/storage/*
  24. !/tmp/storage/.keep
  25. # Ignore CI service files.
  26. /.github
  27. # Ignore Kamal files.
  28. /config/deploy*.yml
  29. /.kamal
  30. # Ignore development files
  31. /.devcontainer
  32. # Ignore Docker-related files
  33. /.dockerignore
  34. /Dockerfile*