From cfd6609f5d25cbf9e6e398a0342ec05cd96d645f Mon Sep 17 00:00:00 2001 From: cjackson Date: Wed, 4 Sep 2024 13:11:54 -0700 Subject: [PATCH] Prepare and destory ui container --- .gitmodules | 5 +++++ scripts/docker_stop.sh | 1 + scripts/prepare.sh | 5 +++++ 3 files changed, 11 insertions(+) diff --git a/.gitmodules b/.gitmodules index bb6d84eb..43f560b9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -131,3 +131,8 @@ [submodule "gsw/ait"] path = gsw/ait url = https://github.com/sphinxdefense/gsw-ait.git + branch = main +[submodule "gsw/ttc-command"] + path = gsw/ttc-command + url = https://github.com/sphinxdefense/ttc-command + branch = main diff --git a/scripts/docker_stop.sh b/scripts/docker_stop.sh index e8b6e104..3fbad8a2 100755 --- a/scripts/docker_stop.sh +++ b/scripts/docker_stop.sh @@ -20,6 +20,7 @@ $DCALL ps --filter=name="sc_*" -aq | xargs $DCALL stop > /dev/null 2>&1 & $DCALL ps --filter=name="nos_*" -aq | xargs $DCALL stop > /dev/null 2>&1 & $DCALL ps --filter=name="ait*" -aq | xargs $DCALL stop > /dev/null 2>&1 & $DCALL ps --filter=name="influxdb*" -aq | xargs $DCALL stop > /dev/null 2>&1 & +$DCALL ps --filter=name="ttc-command*" -aq | xargs $DCALL stop > /dev/null 2>&1 & $DCALL ps --filter ancestor="ballaerospace/cosmos:4.5.0" -aq | xargs $DCALL stop > /dev/null 2>&1 & # Intentionally wait to complete diff --git a/scripts/prepare.sh b/scripts/prepare.sh index 804ec1b0..9356464c 100755 --- a/scripts/prepare.sh +++ b/scripts/prepare.sh @@ -31,6 +31,11 @@ $DCALL image pull ghcr.io/sphinxdefense/gsw-ait:main echo "" echo "" +echo "Prepare ttc docker container..." +$DCALL image pull ghcr.io/sphinxdefense/ttc-command:main +echo "" +echo "" + echo "Prepare nos3 docker container..." $DCALL image pull $DBOX echo ""