72 lines
826 B
Plaintext
72 lines
826 B
Plaintext
# ===========================================
|
|
# DOCKER COMPOSE SECURITY & DATA FILES
|
|
# ===========================================
|
|
|
|
# Environment files with secrets
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.development
|
|
|
|
# Service configuration and data directories
|
|
Services/
|
|
Development/
|
|
|
|
# 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
|