Skip to content

Commit fdf5c24

Browse files
authored
Merge pull request #45 from amito/amit-docker-work
"Containerize" Compass to run on Docker Compose for basic container orchestration
2 parents 37d219a + 678ada4 commit fdf5c24

File tree

12 files changed

+1082
-29
lines changed

12 files changed

+1082
-29
lines changed

.dockerignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Git
2+
.git
3+
.gitignore
4+
.gitattributes
5+
6+
# Python
7+
__pycache__
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
*.egg-info
13+
dist
14+
build
15+
.eggs
16+
17+
# Virtual environments
18+
venv
19+
.venv
20+
env
21+
ENV
22+
23+
# IDE
24+
.vscode
25+
.idea
26+
*.swp
27+
*.swo
28+
*~
29+
.DS_Store
30+
31+
# Testing
32+
.pytest_cache
33+
.coverage
34+
htmlcov
35+
.tox
36+
37+
# Development
38+
.ruff_cache
39+
.mypy_cache
40+
41+
# Generated files
42+
generated_configs
43+
logs
44+
*.log
45+
46+
# Documentation
47+
*.md
48+
docs
49+
!README.md
50+
51+
# Security scan artifacts
52+
.security-scan
53+
54+
# Kubernetes configs (for development)
55+
*.kubeconfig
56+
57+
# Other
58+
TODO.md
59+
ROADMAP.md
60+
Makefile

0 commit comments

Comments
 (0)