summaryrefslogtreecommitdiff
path: root/apps/installer/main.sh
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2022-11-07 13:20:48 +0100
committerGitHub <noreply@github.com>2022-11-07 13:20:48 +0100
commite4016823d7ee5e77aa6cb162a3eed584d7b35a87 (patch)
treee7f6d18ac7a28b6c097b999efed93bf7e052a505 /apps/installer/main.sh
parent6177ce4688fc34af7cebb0d47a15be1553fbffc1 (diff)
feat(CORE): docker permissions and rework (#13454)
- fix docker permissions with mounted volumes on new docker versions (https://github.com/docker/desktop-linux/issues/31) - fix ac-tools image - cleanup unused env - add `cap_add: SYS_NICE` to allow setting process high priority - fix ccache in docker - allow to switch between root user (default) to acore user in any container - fix cache of the downloaded client data - split docker github actions in 2 parts - versioning mysql images - performance improvements
Diffstat (limited to 'apps/installer/main.sh')
-rw-r--r--apps/installer/main.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/installer/main.sh b/apps/installer/main.sh
index 7475c8f2ff..91d6cb1dc6 100644
--- a/apps/installer/main.sh
+++ b/apps/installer/main.sh
@@ -67,7 +67,11 @@ function _switch() {
DOCKER=1 denoRunFile "$AC_PATH_APPS/docker/docker-cmd.ts" "${@:2}"
exit
;;
- ""|"quit"|"14")
+ ""|"v"|"version"|"14")
+ denoRunFile "$AC_PATH_APPS/installer/main.ts" "version"
+ exit
+ ;;
+ ""|"quit"|"15")
echo "Goodbye!"
exit
;;