8 lines
111 B
Bash
Executable file
8 lines
111 B
Bash
Executable file
#/bin/bash/
|
|
|
|
function pull {
|
|
(cd "$1" && echo "[$1]" && docker compose pull);
|
|
}
|
|
|
|
pull proxy;
|
|
pull telegraf;
|