-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.dockerignore
More file actions
125 lines (110 loc) · 1.47 KB
/
Copy path.dockerignore
File metadata and controls
125 lines (110 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
node_modules
.github
.husky
scripts
e2e
eslint.config.js
playwright.config.ts
renovate.json
.env
# disallow directory named "private", it can be used to store things that should not end up in version control or images
# NOTE: needs to be at the root of the project
private/
gitignored/
# disallow version control, package managment, IDEs, tools etc
**/node_modules
**/.venv
**/.git
**/.github
**/.vscode
**/.idea
**/.zed
**/coverage/
**/.eslintcache
**/.DS_Store
**/CLAUDE.md
**/GEMINI.md
**/AGENTS.md
# do not include any data by default (except json)
**/*.csv
**/*.tsv
**/*.db
**/*.sqlite
**/*.sql
**/*.psql
**/*.sqlz
**/*.sqz
**/*.sql.gz
**/*.bson
**/*.jsonl
**/*.bin
**/*.dat
**/*.data
**/*.swp
**/*.tmp
**/.~lock*
**/*.pid
**/*.seed
**/*.lock
**/*.gz
**/*.tgz
**/*.xz
**/*.zip
**/*.gzip
**/*.tar
**/*.xz
**/*.7z
**/*.rar
**/*.docx
**/*.doc
**/*.xlsx
**/*.xls
**/*.pptx
**/*.ppt
**/*.odt
**/*.odp
**/*.ods
**/*.pdf
**/*.ipynb
# disallow logs
**/*.log
**/*.log*
**/logs
**/log
**/*.cpuprofile
**/*.heapprofile
**/*.heapsnapshot
# disallow configuration
**/*.yml
**/*.yaml
**/*.toml
**/*.conf
**/*.ini
**/toska_login
**/cypress.env.json
cypress/
**/*Dockerfile
**/*docker-compose.yml
**/*.husky
**/manifests
# disallow secrects
**/.env
**/.env*
**/*.env.*
**/.secrects
**/*.secrects
**/*.s3cfg
# disallow backups
**/backups
**/backup
**/dump
**/dumps
**/databasedumps
**/privateData
**/temp
**/minio-data
**/db_backups
**/mongo_data
**/uploads
# additional inclusions here
# exclusions here