Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
Loading