From 253dbc783bc24c0f3a33b0ade43429cf7e103138 Mon Sep 17 00:00:00 2001 From: Ly Tuan Kiet Date: Thu, 5 Dec 2024 18:46:28 +0700 Subject: [PATCH] chore: simplify Docker Compose commands in CI workflow - Updated the CI workflow to streamline Docker Compose commands by replacing separate build and up commands with a single `docker compose up --build -d` command. This change enhances the efficiency of the CI process by reducing the number of steps required to start the services. --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd909e8..6c3b859 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,5 +26,4 @@ jobs: run: | docker compose pull docker compose down - docker compose build --no-cache - docker compose up -d --force-recreate + docker compose up --build -d