I created a docker container that is already running a the bash.
$ docker run -ti ubuntu bash
In a new terminal I check for the running containers:
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
354449b423e1 ubuntu "bash" About a minute ago Up About a minute backstabbing_mestorf
Now I want to mount a drive that I have shared already on the running container without committing and creating a new image, neither pausing nor stopping it.So, I know
$ docker run ti -v /SrcDir:/Dest bash
The command above will create a new container but I don't want that. Is there a way where I will be able to mount and eject volumes from the host onto a running container?