homeserver/start-min.sh

11 lines
117 B
Bash
Raw Normal View History

#/bin/bash/
function up {
2023-01-12 09:03:26 +00:00
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
}
up proxy;
up telegraf;