Chad
fbad19dc51
* Add newlines in output. * Remove fancy DNS attempts to get NC and OO to talk. Just had to give NC the local IP through the Advanced settings. Yay!!
31 lines
438 B
Bash
Executable File
31 lines
438 B
Bash
Executable File
#!/bin/bash
|
|
# 2022-08-05 Hyperling
|
|
# Stop all containers.
|
|
# usage: stop.sh
|
|
|
|
## Setup ##
|
|
|
|
DIR="`dirname $0`"
|
|
PROG=`basename $0`
|
|
if [[ $DIR == *"."* ]]; then
|
|
DIR="`pwd`"
|
|
fi
|
|
if [[ -z $DOCKER_HOME ]]; then
|
|
DOCKER_HOME="$DIR/.."
|
|
fi
|
|
|
|
## Main ##
|
|
|
|
echo "Stopping all containers."
|
|
|
|
cd $DOCKER_HOME/Config
|
|
for dir in `ls`; do
|
|
[ -d $dir ] && cd $dir || continue
|
|
echo ""
|
|
pwd
|
|
[ -e docker-compose.yml ] && docker compose down
|
|
cd ..
|
|
done
|
|
|
|
exit 0
|