Compare commits

..

No commits in common. "deac51c69eefd7ca42d3fc330d6fffeb5ae092ee" and "53e973b12a1720a156e94758cf29364accdb59c4" have entirely different histories.

2 changed files with 2 additions and 20 deletions

View File

@ -1,19 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
if [[ $# > 0 ]]; then
DOCKER_ROOT=$1;
else
DOCKER_ROOT=$(pwd);
fi
# echo $DOCKER_ROOT;
for subdir in $DOCKER_ROOT/*; do
if [[ !(-d $subdir) || ${subdir##*/} == "matrix_synapse" || ${subdir##*/} == "pydio_cells" || ${subdir##*/} == "mattermost" ]]; then
continue;
fi
# echo $subdir;
cd $subdir;
# echo $(pwd);
docker-compose down;
done

View File

@ -9,7 +9,7 @@ fi
# echo $DOCKER_ROOT;
for subdir in $DOCKER_ROOT/*; do
if [[ !(-d $subdir) || ${subdir##*/} == "matrix_synapse" || ${subdir##*/} == "pydio_cells" || ${subdir##*/} == "mattermost" ]]; then
if [[ !(-d $subdir) || ${subdir##*/} == "matrix_synapse" ]]; then
continue;
fi
# echo $subdir;
@ -17,3 +17,4 @@ for subdir in $DOCKER_ROOT/*; do
# echo $(pwd);
docker-compose up -d;
done