Skip to content

Commit

Permalink
remove -v flag from docker compose down (#1406)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimoneDutto authored Oct 22, 2024
1 parent b466a77 commit d231730
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion local/jimm/qa-lxd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cleanup() {
fi

echo "Tearing down compose..."
compose_teardown_output=$(docker compose --profile dev down -v 2>&1) || true
compose_teardown_output=$(docker compose --profile dev down 2>&1) || true
if [ $? -ne 0 ]; then
echo "$compose_teardown_output"
fi
Expand Down
2 changes: 1 addition & 1 deletion local/jimm/qa-microk8s.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cleanup() {
fi

echo "Tearing down compose..."
compose_teardown_output=$(docker compose --profile dev down -v 2>&1) || true
compose_teardown_output=$(docker compose --profile dev down 2>&1) || true
if [ $? -ne 0 ]; then
echo "$compose_teardown_output"
fi
Expand Down

0 comments on commit d231730

Please sign in to comment.