Skip to content

Commit ea45edb

Browse files
committed
docker: added fedora support to the release description
Signed-off-by: ravindu644 <droidcasts@protonmail.com>
1 parent 404ee8a commit ea45edb

2 files changed

Lines changed: 30 additions & 10 deletions

File tree

.github/workflows/build-docker-full.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,21 @@ jobs:
4646
- Download the `kernel-builder.zip` file.
4747
- Unzip it.
4848
- Install Docker if it's not already installed.
49-
- In Ubuntu based systems, you can run:
50-
51-
```
52-
sudo apt install docker.io && sudo usermod -aG docker $USER && sudo reboot
53-
```
49+
- **Ubuntu/Debian based systems:**
50+
51+
```
52+
sudo apt install docker.io && sudo usermod -aG docker $USER && sudo reboot
53+
```
54+
- **Fedora/RHEL based systems:**
55+
56+
```
57+
sudo dnf -y install dnf-plugins-core
58+
sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
59+
sudo dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
60+
sudo systemctl enable --now docker
61+
sudo usermod -aG docker $USER
62+
sudo reboot
63+
```
5464
- Run `kernel-builder.sh`, which is located inside the unzipped folder to power up the docker container :)
5565
5666
```

.github/workflows/build-docker-minimal.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,21 @@ jobs:
4646
- Download the `kernel-builder.zip` file.
4747
- Unzip it.
4848
- Install Docker if it's not already installed.
49-
- In Ubuntu based systems, you can run:
50-
51-
```
52-
sudo apt install docker.io && sudo usermod -aG docker $USER && sudo reboot
53-
```
49+
- **Ubuntu/Debian based systems:**
50+
51+
```
52+
sudo apt install docker.io && sudo usermod -aG docker $USER && sudo reboot
53+
```
54+
- **Fedora/RHEL based systems:**
55+
56+
```
57+
sudo dnf -y install dnf-plugins-core
58+
sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
59+
sudo dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
60+
sudo systemctl enable --now docker
61+
sudo usermod -aG docker $USER
62+
sudo reboot
63+
```
5464
- Run `kernel-builder.sh`, which is located inside the unzipped folder to power up the docker container :)
5565
5666
```

0 commit comments

Comments
 (0)