homeserver/start-all.sh

17 lines
204 B
Bash
Raw Normal View History

2021-01-09 20:40:51 +01:00
#/bin/bash/
2022-08-21 18:37:42 +02:00
function up {
2023-01-12 10:03:26 +01:00
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
2022-08-21 18:37:42 +02:00
}
up proxy;
up monitoring;
up telegraf;
up smartHome;
up dashboard;
up download;
2022-08-21 18:37:42 +02:00
up torrent;
2022-10-01 23:25:04 +02:00
up print;
2023-02-20 11:46:30 +01:00
up media;