build: 自动部署脚本

This commit is contained in:
louis 2024-02-28 11:02:39 +08:00
parent f008d59b45
commit 14d80646e8
1 changed files with 13 additions and 0 deletions

13
deploy.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# 拉取最新的代码
git pull
# 关闭并删除 docker-compose 启动的服务
docker-compose down
# 删除指定的 Docker 镜像
docker rmi huaxin_base_frontend-huaxin-base-frontend
# 使用 docker-compose 启动服务
docker-compose up -d