-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy path.dockerignore
More file actions
60 lines (48 loc) · 845 Bytes
/
.dockerignore
File metadata and controls
60 lines (48 loc) · 845 Bytes
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
# Version control
**/.git
# Python artifacts
**/__pycache__
**/.venv
*.pyc
.pytest_cache/
.coverage
htmlcov/
# Node.js artifacts
**/node_modules
**/.next
# Documentation (not copied by any Dockerfile)
*.md
LICENSE
docs/
screenshots/
# Testing (not shipped in images)
tests/
# CLI tool (separate distribution, not in API or web image)
observal_cli/
# Development tooling
.github/
.vscode/
.idea/
*.code-workspace
# Scripts and tools (not needed in containers)
scripts/
tools/
# Demo configs
demo/
# Monitoring configs (volume-mounted at runtime, not baked in)
grafana/
prometheus.yml
otel-collector-config.yaml
# Docker sub-configs (not needed inside images)
docker/docker-compose*.yml
docker/clickhouse/
docker/nginx*.conf
docker/server-package/
# Environment and logs
.env
.env.*
!.env.example
*.log
# Misc
renovate.json
cliff.toml