8 lines
116 B
Bash
Executable File
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
|