2022-02-17 17:59:43 +01:00

10 lines
246 B
Bash
Executable File

SCRIPT_DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
GLOB_DIR=$SCRIPT_DIR/..
SERVICES=( traefik gitea wizz ftp notes recipes )
for service in "${SERVICES[@]}"
do
cd $GLOB_DIR/$service; docker-compose down; docker-compose up -d --build;
done