how to start the docker container code example
Example 1: how to start docker
systemctl start docker.service
#(OR)
systemctl start docker
# it will start docker
Example 2: docker start container
docker start -a <container_id>
systemctl start docker.service
#(OR)
systemctl start docker
# it will start docker
docker start -a <container_id>