Hi welcome to my channel “Jyothi IT Solution”
*****************************************
Hi friends here is my new video…hope you liked my videos…please subscribe my channel and support me
#jyothiitsolutions #unixacademy
#devops #aws #linux #unix #unixacademydevops #jyothiitsolutionsdevops #jyothiitsolutionsaws #jyothiitsolutionsjenkins #jyothiitsolutionskubernetes #unixacademykubernetes #unixacademygit #jyothiitsolutionsdocker #jyothiitsolutionsansible #jyothiitsolutionslinux #jyothiitsolutionsunixcommads #jyothiitsolutionspython #jyothiitsolutionsazure #unixacademypython #unixacademydocker #unitacademy #jyothiitsolutionsgcp #jyothiitsolutionslinuxinterviewquestions #jyothiitsolutionsvideos
#intelugu #aws #linux #unix #ansible #jenkins #docker #kubernetes #python #redhatlinux #inaws #indevpos
#linuxinterviewquestions #devopsinterviewquestions #awsinterviewquestions
#inpython #aure
Do subscribe for more videos:
YouTube: / jyothiitsolutions
/ @jyothiitsolutions
Thanks
Jyothi Installation docker Engine on Ubuntu using by repository. This is the recommended approach
1.Install required packages:
i. sudo apt-get update
ii. sudo apt-get -y install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
2.Add the Docker GPG key and repo:
i. curl -fsSL https://download.docker.com/linux/ubu... | sudo apt-key add -
ii.sudo apt-key fingerprint 0EBFCD88
iii. sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
3.Install Docker CE packages:
i. sudo apt-get update
ii. sudo apt-get install -y docker-ce=5:18.09.5~3-0~ubuntu-bionic docker-ce-cli=5:18.09.5~3-0~ubuntu-bionic containerd.io
4.Give user permission to run docker commands:
sudo usermod -a -G docker $USER
5.Log out and back in.
Test the installation by running a simple container:
docker run hello-world