imetting/.dockerignore

74 lines
801 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Git相关
.git
.gitignore
.gitattributes
.gemini-clipboard
# 文档
*.md
README.md
LICENSE
CHANGELOG.md
# 编辑器和IDE
.vscode
.idea
*.swp
*.swo
*~
.DS_Store
# 依赖目录
**/node_modules
**/__pycache__
**/*.pyc
**/.pytest_cache
**/.coverage
**/htmlcov
# 构建产物这些会在Dockerfile中单独处理
**/dist
**/build
**/.next
**/.nuxt
# 环境变量文件
.env
.env.*
!.env.example
# 日志文件
**/*.log
**/logs
**/npm-debug.log*
**/yarn-debug.log*
**/yarn-error.log*
# 测试相关
**/coverage
**/.nyc_output
**/test
**/tests
# 临时文件
**/tmp
**/temp
**/.cache
# Docker相关
docker-compose*.yml
!docker-compose.yml
Dockerfile*
!Dockerfile
# 备份文件
backups/
*.backup
*.bak
# 上传文件会通过volume挂载
uploads/
# 项目备份
project_backup_*/