This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,12 +26,20 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Remove existing containerd if it exists | ||
run: | | ||
sudo apt-get remove -y containerd || true | ||
- name: Install Docker | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y docker.io | ||
sudo systemctl start docker | ||
sudo systemctl enable docker | ||
sudo apt-get install -y docker-ce docker-ce-cli containerd.io | ||
# Alternatively, use Docker's official installation script | ||
# - name: Install Docker (Alternative) | ||
# run: | | ||
# curl -fsSL https://get.docker.com -o get-docker.sh | ||
# sudo sh get-docker.sh | ||
|
||
- name: Install azd | ||
uses: Azure/[email protected] | ||
|