-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.dockerignore
More file actions
118 lines (100 loc) · 1.21 KB
/
.dockerignore
File metadata and controls
118 lines (100 loc) · 1.21 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
# Git
.git
.gitignore
.gitattributes
# Documentation
*.md
!README.md
docs/
mcp-docs-server/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Build artifacts
*.o
*.a
*.so
*.exe
*.test
*.out
vendor/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv
pip-log.txt
pip-delete-this-directory.txt
.pytest_cache/
.coverage
htmlcov/
*.egg-info/
dist/
build/
# Data directories (will be mounted as volumes)
/data/
devtron-docs/
chroma_db/
# Logs
*.log
logs/
# Test files
*_test.go
test/
tests/
# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
# Docker
docker-compose*.yml
Dockerfile.dev
.dockerignore
# Temporary files
tmp/
temp/
*.tmp
*.bak
*.backup
# Scripts (not needed in image)
scripts/dev/
scripts/test/
start-integrated.sh
# Documentation files (exclude all .md except README)
STARTUP_FIX.md
INDEXING_API_GUIDE.md
INDEXING_CHANGES_SUMMARY.md
CHANGES_COMPLETE.md
DATABASE_CONNECTION_LOGS.md
DOCKERFILE_OPTIMIZATION_GUIDE.md
DOCKER_OPTIMIZATION_COMPLETE.md
OPTIMIZATION_SUMMARY.md
QUICK_START.md
# Node modules (if any)
node_modules/
package-lock.json
yarn.lock
# Large binary files
*.tar
*.tar.gz
*.zip
*.rar
# Database files
*.db
*.sqlite
*.sqlite3
# Cache directories
.cache/
.npm/
.yarn/