oa_front/deploy.sh

10 lines
220 B
Bash
Raw Normal View History

2024-02-28 11:02:39 +08:00
#!/bin/bash
# 拉取最新的代码
2024-03-04 10:01:05 +08:00
echo "Pulling latest code..."
2024-02-28 11:02:39 +08:00
git pull
2024-03-04 10:01:05 +08:00
echo "Building and starting docker services..."
docker compose --env-file .env --env-file .env.production up -d --build
echo "build succeeds."