Start All angepasst
This commit is contained in:
parent
a4ceeff2f0
commit
a49c8712a2
1 changed files with 11 additions and 3 deletions
14
start-all.sh
14
start-all.sh
|
@ -1,6 +1,14 @@
|
||||||
#/bin/bash/
|
#/bin/bash/
|
||||||
|
|
||||||
for dir in ./*/ ; do
|
|
||||||
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
|
|
||||||
done
|
|
||||||
|
|
||||||
|
function up {
|
||||||
|
(cd "$1" && echo "[$1]" && docker-compose up -d "${@:2}");
|
||||||
|
}
|
||||||
|
|
||||||
|
up proxy;
|
||||||
|
up monitoring;
|
||||||
|
up nextcloud --scale app=3 --scale web=2;
|
||||||
|
up gitea;
|
||||||
|
up wallabag;
|
||||||
|
up www;
|
||||||
|
up firefoxsync;
|
||||||
|
|
Loading…
Reference in a new issue