File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ```
Original file line number Diff line number Diff 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 ```
You can’t perform that action at this time.
0 commit comments