Common

Logs .dockerignore

.dockerignore for common projects

View on GitHub

.dockerignore Content

# ==============================================================================
# Created by https://dockerignore.com/
# COMMON TEMPLATE for Logs
# Website: https://dockerignore.com/
# Repository: https://github.com/ronald2wing/.dockerignore
# ==============================================================================

# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# TEMPLATE OVERVIEW & USAGE NOTES
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# • TEMPLATE TYPE: COMMON TEMPLATE
# • PURPOSE: Log file patterns for all projects
# • DESIGN PHILOSOPHY: Modular log patterns
# • COMBINATION GUIDANCE: Combine with language or framework templates
# • SECURITY CONSIDERATIONS: Logs may contain sensitive data
# • BEST PRACTICES: Exclude for faster builds
# • OFFICIAL SOURCES: Docker best practices and community patterns

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Output
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••

*.out
*.stdout

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Cache & Temp
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••

**/temp/log/
**/tmp/log/

*.cache.log
*.temp.log
*.tmp.log

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Log Files
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••

**/logs/

*.log
*.log.*

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Application Logs
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••

**/log/

*.audit
*.console
*.core
*.core.*
*.crash
*.crashdump
*.dmp
*.dump
*.hdmp
*.mdmp
*.minidump
*.perf
*.pid
*.pid.lock
*.stderr

access_log
error_log

Note: This file is fetched from GitHub and cached for 7 days.