14 lines
190 B
Bash
Executable file
14 lines
190 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Mounting..."
|
|
mount -a
|
|
|
|
for dir in */
|
|
do
|
|
echo "Pull&Restart ${dir}"
|
|
cd $dir
|
|
docker compose down
|
|
docker compose pull
|
|
docker compose up -d
|
|
cd ..
|
|
done
|