imetting/.dockerignore

73 lines
782 B
Plaintext
Raw Normal View History

2026-01-19 09:52:53 +00:00
# Git相关
.git
.gitignore
.gitattributes
# 文档
*.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_*/