homeserver/start-min.sh

12 lines
131 B
Bash
Raw Normal View History

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