diff --git a/dc-down-all-containers.sh b/dc-down-all-containers.sh new file mode 100644 index 0000000..f5b7cc7 --- /dev/null +++ b/dc-down-all-containers.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +dc -f admin/compose.yml down +dc -f filebrowser/compose.yml down +dc -f homepage/compose.yml down +dc -f mixed/compose.yml down +dc -f reverseproxy/compose.yml down +dps diff --git a/dc-pull-all-containers.sh b/dc-pull-all-containers.sh new file mode 100644 index 0000000..cfee35f --- /dev/null +++ b/dc-pull-all-containers.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +dc -f admin/compose.yml pull +dc -f filebrowser/compose.yml pull +dc -f homepage/compose.yml pull +dc -f mixed/compose.yml pull +dc -f reverseproxy/compose.yml pull +dps diff --git a/dc-up-all-containers.sh b/dc-up-all-containers.sh new file mode 100644 index 0000000..0384fa1 --- /dev/null +++ b/dc-up-all-containers.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +dc -f admin/compose.yml up -d +dc -f filebrowser/compose.yml up -d +dc -f homepage/compose.yml up -d +dc -f mixed/compose.yml up -d +dc -f reverseproxy/compose.yml up -d +dps