start with docker code example
Example 1: docker hello world
sudo docker run hello-world
Example 2: how to start docker
systemctl start docker.service
#(OR)
systemctl start docker
# it will start docker
Example 3: docker getting-started
#make sure docker is installed
docker run -dp 80:80 docker/getting-started