From 7699a07d1ddf4f932a098d2b7908708512de5bdc Mon Sep 17 00:00:00 2001 From: Ly Tuan Kiet Date: Thu, 5 Dec 2024 18:47:31 +0700 Subject: [PATCH] chore: remove redundant Docker Compose down command in CI workflow - Eliminated the `docker compose down` command from the CI workflow to streamline the build and deployment process. This change simplifies the CI configuration and enhances efficiency by reducing unnecessary steps. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c3b859..7c6cf42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,5 +25,4 @@ jobs: - name: Build and deploy run: | docker compose pull - docker compose down docker compose up --build -d