Posts

Showing posts from June, 2021
  Docker’s Basic Tutorial   Step 1) Create account in Docker Hub, url:- https://hub.docker.com/ (Remember Docker ID and Password)   Step 2) Install Docker in your system, different installer for multiple OS. url:- https://docs.docker.com/get-docker/   Step 3) Login into Docker app using Docker hub account(using Docker ID and Password)   Step 4) Open Win PowerShell in Admin mode (I don’t know about MAC....But I am sure there will be something to run commands)   Step 5) Now to check installed Docker version Run cmd => " docker --version " Result => "Docker version 20.10.7, build f0df350" Note => You might get different version, depends on what is installed at current time.   Step 6) Now let’s try to run an image....but wait I don’t have any image thing in my system....So How can I?...Solution:- Simply run below cmd. Run cmd => "docker run hellow-world" Result => Unable to find image 'hellow-world...