-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
51 lines (38 loc) · 866 Bytes
/
.dockerignore
File metadata and controls
51 lines (38 loc) · 866 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
# See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files.
# Ignore git directory.
/.git/
/.git*
# Ignore bundler config.
/.bundle
# Ignore all environment files.
/.env*
!/.env.example
# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
# Ignore pidfiles, but keep the directory.
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep
# Ignore storage (uploaded files in development and any SQLite databases).
/storage/*
!/storage/
!/storage/.keep
# Include credentials (encrypted, needs RAILS_MASTER_KEY to decrypt)
# Ignore deployment files
/config/deploy*.yml
/bin/deploy
/bin/deploy-*
/bin/release
# Ignore master.key (should be set in environment)
/config/master.key
# Ignore editor noise
/.vscode
# Ignore ignore
.dockerignore
# Don't include our README
/README.md
# Ignore test files
/test/