here is my question, consider the following scenario:
a ubuntu machine, running a dockerized nodejs app.
Dockerfile has RUN instruction to pull the source code from a git repo and run all necessary nodejs/npm command to install the app. CMD instruction starts the app.
Now what I'd need is the possibility to develop via netbeans, in the same way I would do if the source code was in the ubuntu machine (instead of container).
So, how can I develop on ubuntu with netbeans and edit and try code stored inside a container?
I know what docker volume (also mount) is, but it allows to share data from(onto) the host machine. I've already tried to map the local container folder with a host folder, but of course the result was that this mount overide the local container content.