diff --git a/start-all.sh b/start-all.sh index 3dcbdd6..877c199 100755 --- a/start-all.sh +++ b/start-all.sh @@ -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; +