-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
54 lines (42 loc) · 833 Bytes
/
.dockerignore
File metadata and controls
54 lines (42 loc) · 833 Bytes
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
# ----------------------------------------
# Ignore Docker-related files
Dockerfile
docker-compose*
# ----------------------------------------
# Ignore git config
.git
.gitignore
# Ignore secrets
.env
secrets/*
/config/master.key
# ----------------------------------------
# Ignore Markdown docs
*.md
# ----------------------------------------
# Ignore tempfiles, build artifacts, logs, etc.
# NOTE: Some of these will only ever show up in dev, but we
# don't want them there, either.
#*#
*.log
*~
.#*
.bash_history
.bundle/*
.cache/*
.irb_history
artifacts/*
log/*
node_modules/*
public/assets
public/packs
public/packs-test
tmp/*
# ----------------------------------------
# Ignore editor / IDE / CI config
*.sublime*
.github/*
.idea/*
# ----------------------------------------
# Add back any .keep files
!.keep