Skip to content

Commit

Permalink
fix: install docker-compose from github, not from apt repo
Browse files Browse the repository at this point in the history
  • Loading branch information
sjinks committed Apr 2, 2024
1 parent 6457125 commit 8fc30fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/devenv-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: npm pack && npm i -g *.tgz

- name: Install docker-compose
run: sudo apt-get update && sudo apt-get install -y docker-compose-v2
run: sudo curl -SL https://github.com/docker/compose/releases/download/v2.26.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose && sudo chmod 0755 /usr/local/bin/docker-compose

- name: Preload Docker images
run: |
Expand Down

0 comments on commit 8fc30fa

Please sign in to comment.