Compare commits
No commits in common. "deac51c69eefd7ca42d3fc330d6fffeb5ae092ee" and "53e973b12a1720a156e94758cf29364accdb59c4" have entirely different histories.
deac51c69e
...
53e973b12a
@ -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
|
|
@ -9,7 +9,7 @@ fi
|
|||||||
# echo $DOCKER_ROOT;
|
# echo $DOCKER_ROOT;
|
||||||
|
|
||||||
for subdir in $DOCKER_ROOT/*; do
|
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;
|
continue;
|
||||||
fi
|
fi
|
||||||
# echo $subdir;
|
# echo $subdir;
|
||||||
@ -17,3 +17,4 @@ for subdir in $DOCKER_ROOT/*; do
|
|||||||
# echo $(pwd);
|
# echo $(pwd);
|
||||||
docker-compose up -d;
|
docker-compose up -d;
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue
Block a user