fix: use standard docker-compose package name
Production Deployment Pipeline / deploy (push) Failing after 17s Details

This commit is contained in:
mahdi 2026-07-20 23:26:40 +03:30
parent a51f246d1b
commit 2e3d80d332
1 changed files with 2 additions and 2 deletions

View File

@ -15,12 +15,12 @@ jobs:
- name: Install Docker CLI and Compose
run: |
apt-get update
apt-get install -y docker.io docker-compose-v2
apt-get install -y docker.io docker-compose
- name: Deploy Hello World Application
run: |
docker pull nginxdemos/hello:plain-text
docker compose -f ./stacks/hello-world/docker-compose.yml up -d
docker-compose -f ./stacks/hello-world/docker-compose.yml up -d
- name: Send Telegram Notification
if: always()