-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy path.dockerignore
More file actions
60 lines (48 loc) · 1.08 KB
/
.dockerignore
File metadata and controls
60 lines (48 loc) · 1.08 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
# Build context for docs/Dockerfile is the monorepo root.
# See https://docs.docker.com/engine/reference/builder/#dockerignore-file
# Ignore git directory.
/.git/
/.gitignore
# Ignore bundler config in either subproject.
/gem/.bundle
/docs/.bundle
# Ignore environment files.
/docs/.env*
/gem/.env*
# Ignore default key files.
/docs/config/master.key
/docs/config/credentials/*.key
# Ignore logs and tempfiles.
/docs/log/*
/docs/tmp/*
!/docs/log/.keep
!/docs/tmp/.keep
/docs/tmp/pids/*
!/docs/tmp/pids/.keep
# Ignore storage (uploaded files in dev and SQLite databases).
/docs/storage/*
!/docs/storage/.keep
/docs/tmp/storage/*
!/docs/tmp/storage/.keep
# Ignore assets.
/docs/node_modules/
/docs/app/assets/builds/*
!/docs/app/assets/builds/.keep
/docs/public/assets
# Ignore gem build artifacts.
/gem/pkg/
/gem/node_modules/
/gem/tmp/
/gem/.ruby-lsp/
# Ignore CI service files.
/.github
# Ignore Kamal files.
/docs/config/deploy*.yml
/docs/.kamal
# Ignore development files.
/gem/.devcontainer
/docs/.devcontainer
# Ignore Docker-related files.
/.dockerignore
/docs/.dockerignore
/docs/Dockerfile*