selfhost/start-all.sh

15 lines
207 B
Bash
Raw Normal View History

2021-01-14 21:52:41 +01:00
#/bin/bash/
2022-09-09 10:51:18 +02:00
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;