How can I access files on a shared network drive from docker container?
I tried:
docker run --rm -it --name my_app -v //shared_drive_name:/opt/local/shared_drive my_app:1.0 /bin/bash
Also I tried method mentioned here: Docker add network drive as volume on windows
The directory /opt/local/shared_drive
is created but empty. I tried different variations of slashes since the host is win and docker running linux. I am connected to the VPN from the host to access these drives.