Start-all angepasst
This commit is contained in:
parent
83522819c3
commit
5041c8b092
1 changed files with 14 additions and 3 deletions
17
start-all.sh
17
start-all.sh
|
@ -1,5 +1,16 @@
|
||||||
#/bin/bash/
|
#/bin/bash/
|
||||||
|
|
||||||
for dir in ./*/ ; do
|
|
||||||
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
|
function up {
|
||||||
done
|
(cd "$1" && echo "[$1]" && docker-compose up -d "${@:2}");
|
||||||
|
}
|
||||||
|
|
||||||
|
up proxy;
|
||||||
|
up monitoring;
|
||||||
|
up telegraf;
|
||||||
|
up smartHome;
|
||||||
|
up dashboard;
|
||||||
|
up downloads;
|
||||||
|
up portainer;
|
||||||
|
up torrent;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue