I am interested in having Docker have access to external files, but I do not wish to include them as a volume. The files that I need access to will change over time, and th
I solved the same problem with below commands
docker run --mount type=bind,source="$(pwd)"/data,target=/home/data -it
Note "-it conainter_name" should be the last flags.