selfhost/start-all.sh
2023-03-09 21:13:13 +01:00

16 lines
245 B
Bash
Executable file

#/bin/bash/
function up {
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
}
up proxy --scale whoami=3;
up monitoring;
up nextcloud --scale app=5 --scale web=3;
up gitea;
up wallabag;
up www;
up firefoxsync;
up push;
up rustdesk;