selfhost/start-all.sh

17 lines
226 B
Bash
Raw Normal View History

2021-01-14 20:52:41 +00:00
#/bin/bash/
2022-09-09 08:51:18 +00:00
function up {
2023-01-12 09:10:34 +00:00
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
2022-09-09 08:51:18 +00:00
}
2024-03-05 09:04:20 +00:00
#up proxy --scale whoami=3;
up proxy;
2022-09-09 08:51:18 +00:00
up monitoring;
2023-04-17 09:54:58 +00:00
up nextcloud;
2023-06-05 12:59:16 +00:00
up git;
2022-09-09 08:51:18 +00:00
up wallabag;
up www;
up firefoxsync;
up push;
2023-03-08 16:33:18 +00:00
up rustdesk;