ai 模型的 docker 部署及拓展文件
- feat:新功能(feature)
- fix:修补 bug
- docs:文档(documentation)
- style: 格式(不影响代码运行的变动)
- refactor: 重构(即不是新增功能,也不是修改 bug 的代码变动)
- test:增加测试
- chore:构建过程或辅助工具的变动
git add . && git commit -m "Feat: add new feature" && git push
git add . && git commit -m "Fix: fix docker compose bug" && git push
git add . && git commit -m "Docs: update README.md" && git push
git add . && git commit -m "Style: format code" && git push
git add . && git commit -m "Refactor: refactor annotation code" && git push
git add . && git commit -m "Test: add test" && git push
git add . && git commit -m "Chore: update docker build process" && git push