diff --git a/start-all.sh b/start-all.sh index 19e4cdf..032def4 100755 --- a/start-all.sh +++ b/start-all.sh @@ -1,6 +1,14 @@ #/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 nextcloud --scale app=3 --scale web=2; +up gitea; +up wallabag; +up www; +up firefoxsync;