I am trying to mount a host directory into a Docker container so that any updates done on the host is reflected into the Docker containers.
Where am I doing somethin
On Mac OS, to mount a folder /Users//projects/ on your mac at the root of your container:
/Users//projects/
docker run -it -v /Users//projects/:/projects bash
ls /projects