When launching the container, we can mount the host system directory to it, which is written in the documentation
$ docker run -d -P --name web -v /src/webapp:/webapp training/webapp python app.py But how do we mount the directory in an already running container? Can I do this with Docker? Saw only solution using third-party code