Skip to content

Commit 27e0200

Browse files
committed
Docker Optimisation
1 parent cf84fc7 commit 27e0200

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+9258
-2965
lines changed

.dockerignore

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
# Git
2+
.git/
3+
.gitignore
4+
5+
# Documentation
6+
README.md
7+
CHANGELOG.md
8+
CONTRIBUTING.md
9+
docs/
10+
examples/
11+
12+
# IDE
13+
.vscode/
14+
.idea/
15+
*.swp
16+
*.swo
17+
18+
# OS
19+
.DS_Store
20+
Thumbs.db
21+
22+
# Logs
23+
*.log
24+
logs/
25+
26+
# Runtime data
27+
pids/
28+
*.pid
29+
*.seed
30+
*.pid.lock
31+
32+
# Coverage directory used by tools like istanbul
33+
coverage/
34+
*.lcov
35+
36+
# nyc test coverage
37+
.nyc_output
38+
39+
# Dependency directories
40+
node_modules/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Build artifacts
46+
dist/
47+
build/
48+
target/
49+
50+
# Environment files
51+
.env
52+
.env.local
53+
.env.development.local
54+
.env.test.local
55+
.env.production.local
56+
57+
# Temporary files
58+
tmp/
59+
temp/
60+
*.tmp
61+
62+
# Test files
63+
test/
64+
tests/
65+
*_test.go
66+
*.test
67+
68+
# Benchmarks
69+
*.bench
70+
71+
# Vendor directories (already in go.mod)
72+
vendor/
73+
74+
# Binary files
75+
*.exe
76+
*.dll
77+
*.so
78+
*.dylib
79+
80+
# Backup files
81+
*.bak
82+
*.backup
83+
backup/
84+
85+
# Database files
86+
*.db
87+
*.sqlite
88+
*.sqlite3
89+
90+
# Cache
91+
.cache/
92+
cache/
93+
94+
# IDE specific
95+
.vscode/
96+
.idea/
97+
98+
# macOS
99+
.DS_Store
100+
.AppleDouble
101+
.LSOverride
102+
103+
# Windows
104+
Thumbs.db
105+
ehthumbs.db
106+
Desktop.ini
107+
108+
# Linux
109+
*~
110+
111+
# Ignore docker-compose override files
112+
docker-compose.override.yml
113+
docker-compose.local.yml
114+
115+
# Ignore local development scripts
116+
scripts/local/
117+
scripts/dev/
118+
119+
# Ignore uploaded files and reports
120+
uploads/
121+
reports/
122+
models/
123+
logs/

0 commit comments

Comments
 (0)