unified and reworked docker container actions
This commit is contained in:
parent
99d177099a
commit
64f10c1350
22
scripts/dockerContainerAction.sh
Normal file
22
scripts/dockerContainerAction.sh
Normal file
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
upDownContainers() {
|
||||
# evaluate options through given arguments
|
||||
docker_root=~/docker;
|
||||
while [[ $# > 0 ]]; do
|
||||
case $1 in
|
||||
-d | --dir) docker_root=$2; shift 2;;
|
||||
* ) break ;; # Anything else stops command line processing.
|
||||
esac
|
||||
done
|
||||
|
||||
for subdir in $docker_root/*; do
|
||||
if [[ !(-d $subdir) ]]; then
|
||||
continue;
|
||||
fi
|
||||
cd $subdir;
|
||||
docker-compose $@;
|
||||
done
|
||||
}
|
||||
|
@ -1,19 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
if [[ $# > 0 ]]; then
|
||||
DOCKER_ROOT=$1;
|
||||
else
|
||||
DOCKER_ROOT=$(pwd);
|
||||
fi
|
||||
# echo $DOCKER_ROOT;
|
||||
source ./dockerContainerAction.sh
|
||||
|
||||
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
|
||||
# FIXME!!! implement possibility to pass down directory
|
||||
upDownContainers down
|
||||
|
@ -1,23 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
# evaluate options through given arguments
|
||||
docker_root=
|
||||
while [[ $# > 0 ]]; do
|
||||
case $1 in
|
||||
-d | --dir) docker_root=$2; shift 2;;
|
||||
* ) break ;; # Anything else stops command line processing.
|
||||
esac
|
||||
done
|
||||
source ./dockerContainerAction.sh
|
||||
|
||||
if [[ -z $docker_root ]]; then
|
||||
docker_root=~/docker;
|
||||
fi
|
||||
|
||||
for subdir in $docker_root/*; do
|
||||
if [[ !(-d $subdir) ]]; then
|
||||
continue;
|
||||
fi
|
||||
cd $subdir;
|
||||
docker-compose up -d;
|
||||
done
|
||||
# FIXME!!! implement possibility to pass down directory
|
||||
upDownContainers up -d
|
||||
|
Loading…
Reference in New Issue
Block a user