aaef0796a3
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
22 lines
815 B
Plaintext
22 lines
815 B
Plaintext
# ─── Deny by default ────────────────────────────────────────────────
|
|
# Everything inside a service directory is ignored. This means a new
|
|
# service is safe automatically — you don't have to remember to add a
|
|
# rule for it before the first `docker compose up`.
|
|
*/*
|
|
|
|
# ─── …except the files that define a stack ──────────────────────────
|
|
!*/compose.yaml
|
|
!*/docker-compose.yaml
|
|
!*/.env.example
|
|
!*/README.md
|
|
|
|
# Docs are not service data.
|
|
!docs/**
|
|
|
|
# ─── Never, anywhere ────────────────────────────────────────────────
|
|
.env
|
|
*.key
|
|
*.pem
|
|
*.crt
|
|
secrets/
|