Skip to content

Instantly share code, notes, and snippets.

@LinuxIntellect
Last active March 30, 2022 16:07
Show Gist options
  • Save LinuxIntellect/89b4e76b011fa4adb4e0b1f8dd3938fb to your computer and use it in GitHub Desktop.
Save LinuxIntellect/89b4e76b011fa4adb4e0b1f8dd3938fb to your computer and use it in GitHub Desktop.
I will do all projects with openshift on ubuntu 20.04
# If you need to Operate Openshift: Open Source containeraization software on your ubuntu then contact with me:
# Skype: zobaer.ahmed5
# BiP: +8801818264577
# Whatsapp: +8801818 264577
# Telegram: +8801818 264577
# Viber: +8801818264577
# Signal: +8801818264577
# Email: linuxintellect@gmail.com
# https://www.linkedin.com/in/linuxintellect
# Youtube Video:
############################################################################################################################
sudo apt update -y
sudo apt-get upgrade -y
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo apt install software-properties-common
sudo apt upgrade -o APT::Get::Show-Upgraded=true
sudo apt-show-versions | grep upgradeable
sudo apt install apt-show-versions
sudo apt update -y
sudo apt-get upgrade -y
# Next, install a few prerequisite packages which let apt use packages over HTTPS:
sudo apt install apt-transport-https ca-certificates curl software-properties-common
# Then add the GPG key for the official Docker repository to your system:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# Add the Docker repository to APT sources:
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
# This will also update our package database with the Docker packages from the newly added repo.
# Make sure you are about to install from the Docker repo instead of the default Ubuntu repo:
apt-cache policy docker-ce
# Finally, install Docker:
sudo apt install docker-ce
# Docker should now be installed, the daemon started, and the process enabled to start on boot. Check that it’s running:
sudo systemctl status docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment