diff --git a/deploy.sh b/deploy.sh new file mode 100644 index 0000000..21b1986 --- /dev/null +++ b/deploy.sh @@ -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 \ No newline at end of file