15 lines
195 B
Bash
Executable file
15 lines
195 B
Bash
Executable file
#/bin/bash/
|
|
|
|
|
|
function up {
|
|
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
|
}
|
|
|
|
up proxy;
|
|
up monitoring;
|
|
up smartHome;
|
|
up dashboard;
|
|
up download;
|
|
up torrent;
|
|
up media;
|
|
up paperless;
|