From 40eaa3a4afc64b4025fd4e453c1a7c67dd8d8984 Mon Sep 17 00:00:00 2001 From: akanealw Date: Sun, 11 Feb 2024 13:45:22 -0600 Subject: [PATCH] added start stop pull scripts --- dc-down-all-containers.sh | 8 ++++++++ dc-pull-all-containers.sh | 8 ++++++++ dc-up-all-containers.sh | 8 ++++++++ 3 files changed, 24 insertions(+) create mode 100644 dc-down-all-containers.sh create mode 100644 dc-pull-all-containers.sh create mode 100644 dc-up-all-containers.sh 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