I want to interactively execute a Docker container.
I have created it from an image like this
docker create 80597e5353eb
Which outputs an ID:
7372c2d60d513431026a40c50d6f1433e1bc62c57bca4086587193b24c329535
Then I do docker start
on that ID:
docker start 7372c2d60d51
But then, when I try to execute the container:
docker exec -it 7372c2d60d51 /bin/bash
I get:
Error response from daemon: Container 7372c2d60d513431026a40c50d6f1433e1bc62c57bca4086587193b24c329535 is not running
Why? I just started the container and it didn't throw any error.
Why is it not started?