Files
Homelab/.gitignore
2025-08-18 05:09:19 +00:00

80 lines
950 B
Plaintext

# ===========================================
# DOCKER COMPOSE SECURITY & DATA FILES
# ===========================================
# Environment files with secrets
.env
.env.local
.env.production
.env.development
# Service configuration and data directories
# (Keeps service folders but ignores data/config inside them)
*/config/
*/data/
*/logs/
*/cache/
*/db/
*/media/
# Service data patterns
Services/
# Docker volumes and bind mounts from external paths
docker-local/
# Database files
*.db
*.sqlite
*.sqlite3
# Log files
*.log
logs/
# Temporary files
tmp/
temp/
*.tmp
# Backup files
*.bak
*.backup
*~
# OS specific files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini
# IDE files
.vscode/
.idea/
*.swp
*.swo
# Docker specific
.dockerignore
docker-compose.override.yml
# SSL certificates and keys
*.pem
*.key
*.crt
*.p12
*.pfx
# SSH keys
id_rsa
id_rsa.pub
known_hosts
# Runtime files
*.pid
*.sock