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;
|
2022-09-12 14:37:35 +02:00
|
|
|
up download;
|
2022-08-21 18:37:42 +02:00
|
|
|
up portainer;
|
|
|
|
up torrent;
|
2022-10-01 23:25:04 +02:00
|
|
|
up print;
|