how to start a docker container from image code example
Example 1: how to start docker
systemctl start docker.service
#(OR)
systemctl start docker
# it will start docker
Example 2: start docker image
docker start centos
Example 3: start a docker container
$ docker start <container_id>
Example 4: docker how to run existing container
docker start <container-name/ID>