selfhost/start-all.sh

16 lines
215 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 {
2023-01-12 10:10:34 +01:00
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
2022-09-09 10:51:18 +02:00
}
up proxy --scale whoami=3;
2022-09-09 10:51:18 +02:00
up monitoring;
2023-04-17 11:54:58 +02:00
up nextcloud;
2023-06-05 14:59:16 +02:00
up git;
2022-09-09 10:51:18 +02:00
up wallabag;
up www;
up firefoxsync;
up push;
2023-03-08 17:33:18 +01:00
up rustdesk;