From f7ae7e88f6e1231daba6ecccfa75c5d9b62b04ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C6=B0u=20Cao=20Ho=C3=A0ng?= <136492579+lcaohoanq@users.noreply.github.com> Date: Sat, 25 Oct 2025 22:28:57 +0700 Subject: [PATCH] Update auto-cd.yml --- .github/workflows/auto-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-cd.yml b/.github/workflows/auto-cd.yml index 3109e3a..f851098 100644 --- a/.github/workflows/auto-cd.yml +++ b/.github/workflows/auto-cd.yml @@ -195,12 +195,12 @@ jobs: - name: Stop existing containers run: | echo "🛑 Stopping existing containers..." - docker-compose -f docker-compose.prod.yml down || true + docker compose -f docker-compose.prod.yml down || true - name: Deploy application run: | echo "🚀 Deploying to ${{ steps.env.outputs.environment }} environment..." - docker-compose -f docker-compose.prod.yml up -d --build --remove-orphans + docker compose -f docker-compose.prod.yml up -d --build --remove-orphans # - name: Wait for container to be healthy # run: |