From b0dd903004fd17f2b79f8082e4d7f55617ffc4e7 Mon Sep 17 00:00:00 2001 From: akanealw Date: Sun, 11 Feb 2024 13:45:32 -0600 Subject: [PATCH] added start stop pull scripts --- dc-down-all-containers.sh | 7 +++++++ dc-pull-all-containers.sh | 7 +++++++ dc-up-all-containers.sh | 7 +++++++ 3 files changed, 21 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..06c850a --- /dev/null +++ b/dc-down-all-containers.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +dc -f admin/compose.yml down +dc -f mixed/compose.yml down +dc -f olivetine/compose.yml down +dc -f vpn/compose.yml down +dps diff --git a/dc-pull-all-containers.sh b/dc-pull-all-containers.sh new file mode 100644 index 0000000..b799721 --- /dev/null +++ b/dc-pull-all-containers.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +dc -f admin/compose.yml pull +dc -f mixed/compose.yml pull +dc -f olivetine/compose.yml pull +dc -f vpn/compose.yml pull +dps diff --git a/dc-up-all-containers.sh b/dc-up-all-containers.sh new file mode 100644 index 0000000..6234517 --- /dev/null +++ b/dc-up-all-containers.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +dc -f admin/compose.yml up -d +dc -f mixed/compose.yml up -d +dc -f olivetine/compose.yml up -d +dc -f vpn/compose.yml up -d +dps