Created
October 30, 2020 09:45
-
-
Save neohunter/475f6d1cdbeee99479fb72ee1e26b53c to your computer and use it in GitHub Desktop.
.dockerignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.git | |
.gitignore | |
.cache | |
docker-compose.yml | |
### Git ### | |
# Created by git for backups. To disable backups in Git: | |
# $ git config --global mergetool.keepBackup false | |
*.orig | |
# Created by git when using merge tools for conflicts | |
*.BACKUP.* | |
*.BASE.* | |
*.LOCAL.* | |
*.REMOTE.* | |
*_BACKUP_*.txt | |
*_BASE_*.txt | |
*_LOCAL_*.txt | |
*_REMOTE_*.txt | |
### Editors ### | |
.idea/ | |
.vscode/ | |
# File-based project format | |
*.iws | |
### Rails ### | |
*.rbc | |
capybara-*.html | |
.rspec | |
/db/*.sqlite3 | |
/db/*.sqlite3-journal | |
/db/.data | |
/public/system | |
/coverage/ | |
/spec/tmp | |
rerun.txt | |
pickle-email-*.html | |
# Ignore all logfiles and tempfiles. | |
/log/* | |
/tmp/* | |
!/log/.keep | |
!/tmp/.keep | |
## Environment normalization: | |
/.bundle | |
/vendor/bundle | |
# if using bower-rails ignore default bower_components path bower.json files | |
/vendor/assets/bower_components | |
*.bowerrc | |
bower.json | |
# Ignore Byebug command history file. | |
.byebug_history | |
# Ignore node_modules | |
node_modules/ | |
# Ignore precompiled javascript packs | |
/public/packs | |
/public/packs-test | |
/public/assets | |
# Ignore yarn files | |
/yarn-error.log | |
yarn-debug.log* | |
.yarn-integrity | |
# Ignore uploaded files in development | |
/storage/* | |
!/storage/.keep | |
### Ruby ### | |
*.gem | |
/.config | |
/InstalledFiles | |
/pkg/ | |
/spec/reports/ | |
/spec/examples.txt | |
/test/tmp/ | |
/test/version_tmp/ | |
/tmp/ | |
## Documentation cache and generated files: | |
/.yardoc/ | |
/_yardoc/ | |
/doc/ | |
/rdoc/ | |
/.bundle/ | |
/lib/bundler/man/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment