docker image start 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>