docker started images code example
Example 1: how to start docker
systemctl start docker.service
#(OR)
systemctl start docker
# it will start docker
Example 2: docker how to run existing container
docker start <container-name/ID>
systemctl start docker.service
#(OR)
systemctl start docker
# it will start docker
docker start <container-name/ID>