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: |