Skip to content

Instantly share code, notes, and snippets.

@sheikhnavezz
Created March 9, 2024 18:18
Show Gist options
  • Save sheikhnavezz/d71bf199b8db35f270179b463c8e9781 to your computer and use it in GitHub Desktop.
Save sheikhnavezz/d71bf199b8db35f270179b463c8e9781 to your computer and use it in GitHub Desktop.
This is shell script file for steps to install docker (ubuntu 22.04)
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker.io -y
@sheikhnavezz
Copy link
Author

sheikhnavezz commented Mar 9, 2024

clone this file and then use
bash install_docker.sh (Hence, you'll be able to install docker)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment