2026-04-15 18:35:03 +00:00
|
|
|
# Secrets — prevent .env files and encrypted secrets from being baked into the image
|
2026-04-07 19:21:57 +00:00
|
|
|
.env
|
|
|
|
|
.env.enc
|
2026-04-15 18:35:03 +00:00
|
|
|
secrets/
|
2026-04-07 19:21:57 +00:00
|
|
|
|
|
|
|
|
# Version control — .git is huge and not needed in image
|
|
|
|
|
.git
|
|
|
|
|
|
|
|
|
|
# Archives — not needed at runtime
|
|
|
|
|
*.tar.gz
|
|
|
|
|
|
|
|
|
|
# Prometheus data — large, ephemeral data
|
|
|
|
|
prometheus-data/
|
|
|
|
|
|
|
|
|
|
# Compose files — only needed at runtime via volume mount
|
|
|
|
|
docker-compose.yml
|
|
|
|
|
|
|
|
|
|
# Project TOML files — gitignored anyway, won't be in build context
|
|
|
|
|
projects/*.toml
|