Start-all angepasst

This commit is contained in:
Florian Zirker 2022-08-21 18:37:42 +02:00
parent 83522819c3
commit 5041c8b092

View file

@ -1,5 +1,16 @@
#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
done
function up {
(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;