Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

#!/usr/bin/env bash
echo -e "\nSourcing nextgen-stack/set-dev-envars.sh\n"
source ./nextgen/app.env
source ../nextgen-stack/set-dev-envars.sh

# Stop the nextgen stack if requested
STOP_NEXTGEN_STACK=$1
if [[ $STOP_NEXTGEN_STACK = true ]]; then
echo -e "\nStopping nextgen-stack"
export TAIL_LOGS=false
pushd ../nextgen-stack
./stop-all.sh
popd
fi

echo -e "\nStop and remove running MyVA Images containers\n"
docker-compose -f ./nextgen/docker-compose-dev.yml down || { echo "FATAL: Failed to stop and remove running containers"; exit 1; }