homeserver/start-all.sh

18 lines
218 B
Bash
Raw Normal View History

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