60 lines
743 B
Plaintext
60 lines
743 B
Plaintext
# Docker ignore file for backend build
|
|
# 排除不需要的文件和目录以优化构建上下文
|
|
|
|
# Git相关
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE相关
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# 构建产物 (除了需要的JAR文件)
|
|
target/
|
|
!ruoyi-admin/target/ruoyi-admin.jar
|
|
|
|
# 日志文件
|
|
*.log
|
|
logs/
|
|
|
|
# 临时文件
|
|
*.tmp
|
|
*.temp
|
|
*.swp
|
|
*.swo
|
|
|
|
# 操作系统相关
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node.js相关 (前端相关,后端不需要)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Docker相关
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose*.yml
|
|
|
|
# 文档
|
|
README.md
|
|
doc/
|
|
*.md
|
|
|
|
# 前端相关目录
|
|
RuoYi-Vue3/
|
|
|
|
# 其他Docker目录
|
|
docker/frontend/
|
|
docker/database/
|
|
docker/configs/
|
|
docker/scripts/
|
|
|
|
# 测试相关
|
|
.jqwik-database |