Ensemble des services de KAZ
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
515 B

#!/bin/bash
KAZ_ROOT=$(cd "$(dirname $0)"/..; pwd)
. $KAZ_ROOT/bin/.commonFunctions.sh
setKazVars
. $DOCKERS_ENV
. $KAZ_ROOT/secret/SetAllPass.sh
LISTE_APPS="tasks calendar contacts bookmarks richdocuments richdocumentscode external drawio rainloop ransomware_protection"
echo -e "$NC"
for cloud in $(docker ps | grep -i cloud |awk '{print $12}')
do
echo -e "$RED$cloud "
for app in $(echo $LISTE_APPS)
do
echo -e "$GREEN $app $NC"
docker exec -ti -u 33 $cloud /var/www/html/occ app:update $app
done
done