From c48c8dcea98e07092602b9686197a6cf8d96360e Mon Sep 17 00:00:00 2001 From: Vj-L <102945356+Vj-L@users.noreply.github.com> Date: Mon, 21 Nov 2022 14:00:43 +0530 Subject: [PATCH] Added flag with docker-compose down command (#8908) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: “Vijay” <“vijay.l@deuexsolutions.com”> --- .github/workflows/cypress-integration-tests-mysql.yml | 2 +- .github/workflows/cypress-integration-tests-postgresql.yml | 2 +- .github/workflows/maven-build.yml | 2 +- .github/workflows/py-tests.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cypress-integration-tests-mysql.yml b/.github/workflows/cypress-integration-tests-mysql.yml index 38957e2f590..a2b55116eb9 100644 --- a/.github/workflows/cypress-integration-tests-mysql.yml +++ b/.github/workflows/cypress-integration-tests-mysql.yml @@ -134,6 +134,6 @@ jobs: - name: Clean Up run: | cd ./docker/local-metadata - docker compose down + docker compose down --remove-orphans rm -rf ${PWD}/docker-volume diff --git a/.github/workflows/cypress-integration-tests-postgresql.yml b/.github/workflows/cypress-integration-tests-postgresql.yml index 8a824f5a693..83eab50d95d 100644 --- a/.github/workflows/cypress-integration-tests-postgresql.yml +++ b/.github/workflows/cypress-integration-tests-postgresql.yml @@ -134,5 +134,5 @@ jobs: - name: Clean Up run: | cd ./docker/local-metadata - docker compose down + docker compose down --remove-orphans rm -rf ${PWD}/docker-volume \ No newline at end of file diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index 87aab5194d8..863a1370362 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -111,7 +111,7 @@ jobs: - name: Clean Up run: | cd ./docker/local-metadata - docker compose down + docker compose down --remove-orphans rm -rf ${PWD}/docker-volume - name: Publish Test Report diff --git a/.github/workflows/py-tests.yml b/.github/workflows/py-tests.yml index 3358ab15052..62e74f64b59 100644 --- a/.github/workflows/py-tests.yml +++ b/.github/workflows/py-tests.yml @@ -107,7 +107,7 @@ jobs: - name: Clean Up run: | cd ./docker/local-metadata - docker compose down + docker compose down --remove-orphans rm -rf ${PWD}/docker-volume