Skip to content

Commit

Permalink
fix: resolve docker-compose errors for CI Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
gerbie-goober committed Aug 4, 2024
1 parent 75efabf commit bc93046
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/A2_Part1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install docker-compose-plugin
sudo apt-get install -y curl
sudo curl -L "https://github.com/docker/compose/releases/download/v2.21.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
- name: Login to Docker Hub
uses: docker/login-action@v1
Expand Down

0 comments on commit bc93046

Please sign in to comment.