We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d20d94b commit 8e58ff1Copy full SHA for 8e58ff1
.github/workflows/tests.yml
@@ -23,10 +23,10 @@ jobs:
23
24
- name: Install Docker and Docker Compose
25
run: |
26
- # Remove conflicting containerd package if it exists
27
- sudo apt-get remove -y containerd
28
- sudo apt-get update
29
- sudo apt-get install -y docker.io docker-compose
+ # Install Docker using the official convenience script
+ curl -fsSL https://get.docker.com -o get-docker.sh
+ sh get-docker.sh
+ sudo apt-get install -y docker-compose
30
31
- name: Build Docker image
32
run: docker-compose build
0 commit comments