selfhost/pull-all.sh

7 lines
96 B
Bash
Executable file

#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose pull);
done