-
-
Save bagus-Arya/85b0353c939e9ab2755a8e99ffbb19f6 to your computer and use it in GitHub Desktop.
Revisions
-
kashifulhaque revised this gist
Jan 28, 2024 . 1 changed file with 2 additions and 0 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ **If you do not have `yay` installed, then follow [these steps](https://itsfoss.com/install-yay-arch-linux) to install it first** ## **Update** ```sh yay -
kashifulhaque revised this gist
Jan 28, 2024 . 1 changed file with 2 additions and 2 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 charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,11 @@ ## **Update** ```sh yay ``` ## **Install** ```sh yay -S docker docker-compose ``` ## **Start the service** -
kashifulhaque revised this gist
Dec 18, 2023 . No changes.There are no files selected for viewing
-
kashifulhaque revised this gist
Dec 2, 2023 . 1 changed file with 1 addition and 1 deletion.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 charactersOriginal file line number Diff line number Diff line change @@ -18,7 +18,7 @@ sudo systemctl enable docker.service reboot ``` ## **Liunx post-install step (to run `docker` without root or `sudo` one might say)** ```sh sudo groupadd docker sudo usermod -aG docker $USER -
kashifulhaque created this gist
Dec 2, 2023 .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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ ## **Update** ```sh sudo pacman -Syu ``` ## **Install** ```sh sudo pacman -S docker docker-compose ``` ## **Start the service** ```sh sudo systemctl start docker.service ``` **If the above command throws an error, then do the following** ```sh sudo systemctl enable docker.service reboot ``` ## **Liunx post-install step (to run `docker` with root or `sudo` one might say)** ```sh sudo groupadd docker sudo usermod -aG docker $USER newgrp docker ```