docker run stopped 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 my_container
Example 3: docker display stopped containers
#display all containers
docker ps -a