Start All angepasst

This commit is contained in:
Florian Zirker 2022-09-09 10:51:18 +02:00
parent a4ceeff2f0
commit a49c8712a2

View file

@ -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;