#gizmoone #dockerforlinux #dockercommands #dockerhelloworld
Install Docker and run Hello World Image.
Learn about few important Docker commands.
Few of the links related to Docker used in the video,
https://www.docker.com/
https://www.docker.com/get-started
https://hub.docker.com/search?q=&type...
https://hub.docker.com/editions/commu...
https://docs.docker.com/engine/instal...
https://docs.docker.com/engine/instal...
Installation command,
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
curl -fsSL https://download.docker.com/linux/ubu... | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
sudo docker run hello-world
Check Docker Version, Info and Status
docker --version
docker info
sudo service enable status
To create the docker group and add your user:
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker
docker run hello-world
Configure Docker to start on boot
sudo systemctl enable docker