We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 66cd84a + 776db33 commit 4983e76Copy full SHA for 4983e76
2 files changed
bin/shutdown.sh
@@ -19,4 +19,5 @@ ROOT=$(dirname -- "$(pwd -P)")
19
COMPOSE_ROOT="$ROOT/compose"
20
cd - > /dev/null
21
22
-cd "$COMPOSE_ROOT" && docker compose -p higress down --remove-orphans
+source $COMPOSE_ROOT/.env
23
+cd "$COMPOSE_ROOT" && COMPOSE_PROFILES="$COMPOSE_PROFILES" && docker compose -p higress down --remove-orphans
bin/startup.sh
@@ -24,6 +24,8 @@ if [ ! -f "$CONFIGURED_MARK" ]; then
24
echo "Higress hasn't been configured yet. Please run \"$ROOT/bin/configure.sh\" first"
25
exit -1
26
fi
27
+
28
29
cd "$COMPOSE_ROOT" && COMPOSE_PROFILES="$COMPOSE_PROFILES" docker compose -p higress up -d
30
31
retVal=$?
0 commit comments