-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy path.dockerignore
More file actions
131 lines (108 loc) · 1.93 KB
/
Copy path.dockerignore
File metadata and controls
131 lines (108 loc) · 1.93 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
126
127
128
129
130
131
# See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files.
# Git and version control
/.git/
/.gitignore
/.gitattributes
/.gitmodules
/worktrees/
# Documentation and README files
README.md
CHANGELOG.md
DEVELOPER_GUIDE.md
CODE_OF_CONDUCT.md
LICENSE
*.md
docs/
# Docker files (don't include Docker files in the build context)
/.dockerignore
/Dockerfile*
docker-compose*.yml
# Development and testing
spec/
test/
coverage/
.rspec
.rubocop.yml
.annotaterb.yml
.database_consistency.todo.yml
.database_consistency.yml
.deepsource.toml
# Ignore bundler config.
/.bundle
/vendor/bundle
# Ignore all environment files.
/.env*
# Ignore all default key files.
/config/master.key
/config/credentials/*.key
/config/credentials.yml.enc
# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
# Ignore pidfiles, but keep the directory.
/tmp/pids/*
!/tmp/pids/.keep
# Ignore storage (uploaded files in development and any SQLite databases).
/storage/*
!/storage/.keep
/tmp/storage/*
!/tmp/storage/.keep
*.sqlite3
*.db
# Node.js and JavaScript
/node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Ignore built assets.
/app/assets/builds/*
!/app/assets/builds/.keep
/public/assets
/public/packs/
/public/packs-test/
/public/uploads/
# Ruby debugging and development
.byebug_history
# IDE and editor files
.vscode/
.idea/
.zed
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# OS generated files
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
# Ignore CI service files.
/.github
.gitlab-ci.yml
.travis.yml
circle.yml
renovate.json
# Ignore development files
/.devcontainer
.claude-on-rails
# Ignore any Docker container volumes
/volumes/*
# Deployment and infrastructure
deployment/
.ssl/
nginx.conf
# Local development tools
bin/dev
bin/setup*
claude-swarm.yml
# Output and build artifacts
output/
# CircleCI configuration
.circleci/**/*
.circleci
# Keycloak config files (not used by Quepid)
keycloak