diff --git a/pull-all.sh b/pull-all.sh new file mode 100755 index 0000000..f7ddb89 --- /dev/null +++ b/pull-all.sh @@ -0,0 +1,6 @@ +#/bin/bash/ + +for dir in ./*/ ; do + (cd "$dir" && echo "[$dir]" && docker-compose pull); +done + diff --git a/start-all.sh b/start-all.sh new file mode 100755 index 0000000..19e4cdf --- /dev/null +++ b/start-all.sh @@ -0,0 +1,6 @@ +#/bin/bash/ + +for dir in ./*/ ; do + (cd "$dir" && echo "[$dir]" && docker-compose up -d); +done + diff --git a/stop-all.sh b/stop-all.sh new file mode 100755 index 0000000..19e4cdf --- /dev/null +++ b/stop-all.sh @@ -0,0 +1,6 @@ +#/bin/bash/ + +for dir in ./*/ ; do + (cd "$dir" && echo "[$dir]" && docker-compose up -d); +done +