I was naively expecting this command to run a bash shell in a running container :
docker run \"id of running container\" /bin/bash
it look
There are two ways.
With attach
$ sudo docker attach 665b4a1e17b6 #by ID
With exec
$ sudo docker exec - -t 665b4a1e17b6 #by ID