Skripte angepasst
This commit is contained in:
parent
f09a048c79
commit
d3f687ea90
2 changed files with 13 additions and 0 deletions
|
@ -1,5 +1,9 @@
|
|||
#/bin/bash/
|
||||
|
||||
for dir in ./*/ ; do
|
||||
(cd "$dir" && echo "[$dir]" && docker-compose build);
|
||||
done
|
||||
|
||||
for dir in ./*/ ; do
|
||||
(cd "$dir" && echo "[$dir]" && docker-compose pull);
|
||||
done
|
||||
|
|
9
pull-min.sh
Executable file
9
pull-min.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#/bin/bash/
|
||||
|
||||
function pull {
|
||||
(cd "$1" && echo "[$1]" && docker-compose pull);
|
||||
}
|
||||
|
||||
pull proxy;
|
||||
pull telegraf;
|
||||
pull portainer;
|
Loading…
Reference in a new issue