-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
77 lines (61 loc) · 1.38 KB
/
.dockerignore
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
##############################################
### Ignore everything from .gitignore ###
### This is .gitignore with prefixed "**/" ###
##############################################
# generic files to ignore
# backup files (*~) and vim swap file (.swp), MacOS dir file (.DS_Store)
**/*~
**/*.lock
**/*.DS_Store
**/*.swp
**/*.out
# IDE files to ignore (Netbeans, Eclipse, IntelliJ)
**/nbproject
**/nb-configuration.xml
**/nbactions.xml
**/.netbeans.xml
**/context.xml
**/.classpath
**/.project
**/.settings
**/build.xml
**/*.iml
**/.idea
# ignore development database and log directories
**/database
**/log
# ignore generated .class files
**/*.class
# ignore compilation output
**/target
# ignore private maven cache
**/.m2
##############################################
### Additionally ignore some tracked files ###
##############################################
# Ignore application.yml files (for all profiles)
**/application*.yml
# Ignore json files in resources
**/resources/**/*.json
# Ignore keys in resources
**/resources/**/keys
**/resources/**/*.key
**/resources/**/*.pub
# Ignore logging configuration
**/log*.xml
# Ignore .git
**/.git
**/.gitignore
**/.gitkeep
# Ignore .editorconfig
**/.editorconfig
# Ignore Docker config files themselves
**/.dockerignore
**/docker-compose.yml
**/Dockerfile
# Ignore scripts
**/.github
**/docker-build.sh
# Ignore docs
**/LICENSE*
**/README*