diff options
Diffstat (limited to 'apps/installer/main.sh')
-rw-r--r-- | apps/installer/main.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/installer/main.sh b/apps/installer/main.sh index 71df484244..b985b225b4 100644 --- a/apps/installer/main.sh +++ b/apps/installer/main.sh @@ -19,7 +19,8 @@ options=( "client-data: (gd): download client data from github repository (beta)" # 11 "run-worldserver (rw): execute a simple restarter for worldserver" # 12 "run-authserver (ra): execute a simple restarter for authserver" # 13 - "quit: Exit from this menu" # 14 + "docker (dr): Run docker tools" # 14 + "quit: Exit from this menu" # 15 ) function _switch() { @@ -66,7 +67,11 @@ function _switch() { ""|"ra"|"run-authserver"|"13") inst_simple_restarter authserver ;; - ""|"quit"|"14") + ""|"dr"|"docker"|"14") + DOCKER=1 denoRunFile "$AC_PATH_APPS/docker/docker-cmd.ts" "${@:2}" + exit + ;; + ""|"quit"|"15") echo "Goodbye!" exit ;; |