Files
MyTool/.dockerignore

43 lines
421 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Git
.git
.gitignore
.gitattributes
# 文档
README.md
LICENSE
开发文档/
# IDE
.vscode/
.idea/
*.iml
*.swp
*.swo
# 构建产物Docker 内会重新构建)
frontend/node_modules/
frontend/dist/
backend/target/
*.jar
*.war
# 日志
*.log
npm-debug.log*
yarn-debug.log*
# 系统文件
.DS_Store
Thumbs.db
Desktop.ini
# Docker 相关(避免递归)
docker/
.dockerignore
# 其他
*.local
.cache/
coverage/