simple-webhook/redeploy.sh
2024-08-13 06:41:39 +03:00

8 lines
116 B
Bash
Executable File

cd ~/gits
for d in */; do
cd "$d"
git pull
docker compose up -d --build
docker compose restart
done