16 lines
220 B
Bash
Executable file
16 lines
220 B
Bash
Executable file
#/bin/bash/
|
|
|
|
function up {
|
|
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
|
}
|
|
|
|
#up proxy --scale whoami=3;
|
|
up proxy;
|
|
up nextcloud;
|
|
up git;
|
|
up wallabag;
|
|
up www;
|
|
up firefoxsync;
|
|
up push;
|
|
up rustdesk;
|
|
up news;
|